Uses of Interface
org.xnio.conduits.StreamSourceConduit
-
Packages that use StreamSourceConduit Package Description org.xnio The main API package for XNIO.org.xnio.conduits The XNIO conduit SPI. -
-
Uses of StreamSourceConduit in org.xnio
Methods in org.xnio with parameters of type StreamSourceConduit Modifier and Type Method Description protected 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 StreamSourceConduit Modifier and Type Class Description classAbstractStreamSourceConduit<D extends StreamSourceConduit>An abstract base class for filtering stream source conduits.Classes in org.xnio.conduits that implement StreamSourceConduit Modifier and Type Class Description classAbstractStreamSourceConduit<D extends StreamSourceConduit>An abstract base class for filtering stream source conduits.classBlockingStreamSourceConduitA stream source conduit which can switch into and out of blocking mode.classBufferedStreamSourceConduitA stream source conduit which buffers input.classEmptyStreamSourceConduitA stream source conduit which is always empty.classFixedLengthStreamSourceConduitA stream source conduit which limits the length of input.classInflatingStreamSourceConduitA filtering stream source conduit which decompresses the source data.classMessageStreamSourceConduitA stream source conduit which reads stream data from messages.classPushBackStreamSourceConduitA stream source conduit which allows buffers to be "pushed back" to the head of the stream.classStreamSourceChannelWrappingConduitA conduit which wraps a channel, for compatibility.classSynchronizedStreamSourceConduitA synchronized stream source conduit.Methods in org.xnio.conduits that return StreamSourceConduit Modifier and Type Method Description StreamSourceConduitConduitStreamSourceChannel. getConduit()Get the underlying conduit for this channel.Methods in org.xnio.conduits with parameters of type StreamSourceConduit Modifier and Type Method Description static 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, java.nio.ByteBuffer throughBuffer, java.nio.channels.WritableByteChannel sink)Platform-independent channel-to-channel transfer method.Constructors in org.xnio.conduits with parameters of type StreamSourceConduit Constructor Description BlockingStreamSourceConduit(StreamSourceConduit next)Construct a new instance.BufferedStreamSourceConduit(StreamSourceConduit next, Pooled<java.nio.ByteBuffer> pooledBuffer)Construct a new instance.ConduitReadableByteChannel(StreamSourceConduit conduit)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<java.nio.ByteBuffer> receiveBuffer)Construct a new instance.InflatingStreamSourceConduit(StreamSourceConduit next, java.util.zip.Inflater inflater)Construct a new instance.PushBackStreamSourceConduit(StreamSourceConduit next)Construct a new instance.SynchronizedStreamSourceConduit(StreamSourceConduit next)Construct a new instance.SynchronizedStreamSourceConduit(StreamSourceConduit next, java.lang.Object lock)Construct a new instance.
-