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 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 StreamSinkConduitModifier and TypeClassDescriptionclassAbstractStreamSinkConduit<D extends StreamSinkConduit>An abstract base class for filtering stream sink conduits.Classes in org.xnio.conduits that implement StreamSinkConduitModifier and TypeClassDescriptionclassAbstractStreamSinkConduit<D extends StreamSinkConduit>An abstract base class for filtering stream sink conduits.final classfinal classA stream sink conduit that buffers output data.final classA filtering stream sink conduit which compresses the written data.final classA stream sink conduit with a limited length.final classA stream sink conduit which wraps each write into a single message.final classA stream sink conduit which discards all data written to it.final classA conduit which wraps a channel, for compatibility.final classA 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 TypeMethodDescriptionvoidConduitStreamSinkChannel.setConduit(StreamSinkConduit conduit) Set the underlying conduit for this channel.static longConduits.transfer(ReadableByteChannel source, long count, ByteBuffer throughBuffer, StreamSinkConduit sink) Platform-independent channel-to-channel transfer method.static intConduits.writeFinalBasic(StreamSinkConduit conduit, ByteBuffer src) Writes the buffer to the conduit, and terminates writes if all the data is writtenstatic longConduits.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.