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 voidStreamConnection.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 TypeClassDescriptionclassAbstractStreamSourceConduit<D extends StreamSourceConduit>An abstract base class for filtering stream source conduits.Classes in org.xnio.conduits that implement StreamSourceConduitModifier and TypeClassDescriptionclassAbstractStreamSourceConduit<D extends StreamSourceConduit>An abstract base class for filtering stream source conduits.final classA stream source conduit which can switch into and out of blocking mode.final classA stream source conduit which buffers input.final classA stream source conduit which is always empty.final classA stream source conduit which limits the length of input.final classA filtering stream source conduit which decompresses the source data.final classA stream source conduit which reads stream data from messages.final classA stream source conduit which allows buffers to be "pushed back" to the head of the stream.final classA conduit which wraps a channel, for compatibility.final classA 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 longConduits.drain(StreamSourceConduit conduit, long count) Attempt to drain the given number of bytes from the stream source conduit.voidConduitStreamSourceChannel.setConduit(StreamSourceConduit conduit) Set the underlying conduit for this channel.static longConduits.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.