Uses of Interface
org.xnio.conduits.StreamSinkConduit
Packages that use StreamSinkConduit
-
Uses of StreamSinkConduit in org.xnio
Methods in org.xnio with parameters of type StreamSinkConduitModifier and TypeMethodDescriptionprotected void
StreamConnection.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 StreamSinkConduitModifier and TypeClassDescriptionclass
AbstractStreamSinkConduit<D extends StreamSinkConduit>
An abstract base class for filtering stream sink conduits.Classes in org.xnio.conduits that implement StreamSinkConduitModifier and TypeClassDescriptionclass
AbstractStreamSinkConduit<D extends StreamSinkConduit>
An abstract base class for filtering stream sink conduits.final class
final class
A stream sink conduit that buffers output data.final class
A filtering stream sink conduit which compresses the written data.final class
A stream sink conduit with a limited length.final class
A stream sink conduit which wraps each write into a single message.final class
A stream sink conduit which discards all data written to it.final class
A conduit which wraps a channel, for compatibility.final class
A synchronized stream sink conduit.Methods in org.xnio.conduits that return StreamSinkConduitModifier and TypeMethodDescriptionConduitStreamSinkChannel.getConduit()
Get the underlying conduit for this channel.Methods in org.xnio.conduits with parameters of type StreamSinkConduitModifier and TypeMethodDescriptionvoid
ConduitStreamSinkChannel.setConduit
(StreamSinkConduit conduit) Set the underlying conduit for this channel.static long
Conduits.transfer
(ReadableByteChannel source, long count, ByteBuffer throughBuffer, StreamSinkConduit sink) Platform-independent channel-to-channel transfer method.static int
Conduits.writeFinalBasic
(StreamSinkConduit conduit, ByteBuffer src) Writes the buffer to the conduit, and terminates writes if all the data is writtenstatic long
Conduits.writeFinalBasic
(StreamSinkConduit conduit, 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 StreamSinkConduitModifierConstructorDescriptionBufferedStreamSinkConduit
(StreamSinkConduit next, Pooled<ByteBuffer> pooledBuffer) Construct a new instance.ConduitStreamSinkChannel
(Configurable configurable, StreamSinkConduit conduit) Construct a new instance.Construct a new instance.DeflatingStreamSinkConduit
(StreamSinkConduit next, Deflater deflater) Construct a new instance.FramingMessageSinkConduit
(StreamSinkConduit next, boolean longLengths, Pooled<ByteBuffer> transmitBuffer) Construct a new instance.Construct a new instance.SynchronizedStreamSinkConduit
(StreamSinkConduit next, Object lock) Construct a new instance.