Uses of Interface
org.xnio.conduits.StreamSourceConduit
Packages that use StreamSourceConduit
-
Uses of StreamSourceConduit in org.xnio
Methods in org.xnio with parameters of type StreamSourceConduitModifier and TypeMethodDescriptionprotected void
StreamConnection.setSourceConduit
(StreamSourceConduit conduit) Set the source conduit for this channel. -
Uses of StreamSourceConduit in org.xnio.conduits
Classes in org.xnio.conduits with type parameters of type StreamSourceConduitModifier and TypeClassDescriptionclass
AbstractStreamSourceConduit<D extends StreamSourceConduit>
An abstract base class for filtering stream source conduits.Classes in org.xnio.conduits that implement StreamSourceConduitModifier and TypeClassDescriptionclass
AbstractStreamSourceConduit<D extends StreamSourceConduit>
An abstract base class for filtering stream source conduits.final class
A stream source conduit which can switch into and out of blocking mode.final class
A stream source conduit which buffers input.final class
A stream source conduit which is always empty.final class
A stream source conduit which limits the length of input.final class
A filtering stream source conduit which decompresses the source data.final class
A stream source conduit which reads stream data from messages.final class
A stream source conduit which allows buffers to be "pushed back" to the head of the stream.final class
A conduit which wraps a channel, for compatibility.final class
A synchronized stream source conduit.Methods in org.xnio.conduits that return StreamSourceConduitModifier and TypeMethodDescriptionConduitStreamSourceChannel.getConduit()
Get the underlying conduit for this channel.Methods in org.xnio.conduits with parameters of type StreamSourceConduitModifier and TypeMethodDescriptionstatic long
Conduits.drain
(StreamSourceConduit conduit, long count) Attempt to drain the given number of bytes from the stream source conduit.void
ConduitStreamSourceChannel.setConduit
(StreamSourceConduit conduit) Set the underlying conduit for this channel.static long
Conduits.transfer
(StreamSourceConduit source, long count, ByteBuffer throughBuffer, WritableByteChannel sink) Platform-independent channel-to-channel transfer method.Constructors in org.xnio.conduits with parameters of type StreamSourceConduitModifierConstructorDescriptionConstruct a new instance.BufferedStreamSourceConduit
(StreamSourceConduit next, Pooled<ByteBuffer> pooledBuffer) Construct a new instance.Construct a new instance.ConduitStreamSourceChannel
(Configurable configurable, StreamSourceConduit conduit) Construct a new instance.FixedLengthStreamSourceConduit
(StreamSourceConduit next, long remaining) Construct a new instance.FramingMessageSourceConduit
(StreamSourceConduit next, Pooled<ByteBuffer> receiveBuffer) Construct a new instance.InflatingStreamSourceConduit
(StreamSourceConduit next, Inflater inflater) Construct a new instance.Construct a new instance.Construct a new instance.SynchronizedStreamSourceConduit
(StreamSourceConduit next, Object lock) Construct a new instance.