Uses of Interface
org.xnio.conduits.StreamSinkConduit
-
Packages that use StreamSinkConduit Package Description org.xnio The main API package for XNIO.org.xnio.conduits The XNIO conduit SPI. -
-
Uses of StreamSinkConduit in org.xnio
Methods in org.xnio with parameters of type StreamSinkConduit Modifier and Type Method Description protected voidStreamConnection. setSinkConduit(StreamSinkConduit conduit)Set the sink conduit for this channel. -
Uses of StreamSinkConduit in org.xnio.conduits
Classes in org.xnio.conduits with type parameters of type StreamSinkConduit Modifier and Type Class Description classAbstractStreamSinkConduit<D extends StreamSinkConduit>An abstract base class for filtering stream sink conduits.Classes in org.xnio.conduits that implement StreamSinkConduit Modifier and Type Class Description classAbstractStreamSinkConduit<D extends StreamSinkConduit>An abstract base class for filtering stream sink conduits.classBlockingStreamSinkConduitclassBufferedStreamSinkConduitA stream sink conduit that buffers output data.classDeflatingStreamSinkConduitA filtering stream sink conduit which compresses the written data.classFixedLengthStreamSinkConduitA stream sink conduit with a limited length.classMessageStreamSinkConduitA stream sink conduit which wraps each write into a single message.classNullStreamSinkConduitA stream sink conduit which discards all data written to it.classStreamSinkChannelWrappingConduitA conduit which wraps a channel, for compatibility.classSynchronizedStreamSinkConduitA synchronized stream sink conduit.Methods in org.xnio.conduits that return StreamSinkConduit Modifier and Type Method Description StreamSinkConduitConduitStreamSinkChannel. getConduit()Get the underlying conduit for this channel.Methods in org.xnio.conduits with parameters of type StreamSinkConduit Modifier and Type Method Description voidConduitStreamSinkChannel. setConduit(StreamSinkConduit conduit)Set the underlying conduit for this channel.static longConduits. transfer(java.nio.channels.ReadableByteChannel source, long count, java.nio.ByteBuffer throughBuffer, StreamSinkConduit sink)Platform-independent channel-to-channel transfer method.static intConduits. writeFinalBasic(StreamSinkConduit conduit, java.nio.ByteBuffer src)Writes the buffer to the conduit, and terminates writes if all the data is writtenstatic longConduits. writeFinalBasic(StreamSinkConduit conduit, java.nio.ByteBuffer[] srcs, int offset, int length)Writes the buffer to the conduit, and terminates writes if all the data is writtenConstructors in org.xnio.conduits with parameters of type StreamSinkConduit Constructor Description BlockingStreamSinkConduit(StreamSinkConduit next)BufferedStreamSinkConduit(StreamSinkConduit next, Pooled<java.nio.ByteBuffer> pooledBuffer)Construct a new instance.ConduitStreamSinkChannel(Configurable configurable, StreamSinkConduit conduit)Construct a new instance.ConduitWritableByteChannel(StreamSinkConduit conduit)Construct a new instance.DeflatingStreamSinkConduit(StreamSinkConduit next, java.util.zip.Deflater deflater)Construct a new instance.FramingMessageSinkConduit(StreamSinkConduit next, boolean longLengths, Pooled<java.nio.ByteBuffer> transmitBuffer)Construct a new instance.SynchronizedStreamSinkConduit(StreamSinkConduit next)Construct a new instance.SynchronizedStreamSinkConduit(StreamSinkConduit next, java.lang.Object lock)Construct a new instance.
-