Uses of Class
io.vertx.mutiny.core.net.StreamChannel.StreamChannelImpl
Packages that use StreamChannel.StreamChannelImpl
-
Uses of StreamChannel.StreamChannelImpl in io.vertx.mutiny.core.net
Methods in io.vertx.mutiny.core.net that return StreamChannel.StreamChannelImplModifier and TypeMethodDescriptionStreamChannel.StreamChannelImpl.closeAndForget()Close the channelStreamChannel.StreamChannelImpl.closeHandler(Runnable handler) Set ahandlernotified when the channel is closedStreamChannel.StreamChannelImpl.endAndForget()Callsclose()StreamChannel.StreamChannelImpl.endAndForget(io.vertx.core.buffer.Buffer arg0) Same asend()but writes some data to the stream before ending.StreamChannel.StreamChannelImpl.pipeToAndForget(WriteStream<io.vertx.core.buffer.Buffer> arg0) Pipe thisReadStreamto theWriteStream.StreamChannel.StreamChannelImpl.sendFileAndForget(String filename) Tell the operating system to stream a file as specified byfilenamedirectly from disk to the outgoing connection, bypassing userspace altogether (where supported by the underlying operating system.StreamChannel.StreamChannelImpl.sendFileAndForget(String filename, long offset) Tell the operating system to stream a file as specified byfilenamedirectly from disk to the outgoing connection, bypassing userspace altogether (where supported by the underlying operating system.StreamChannel.StreamChannelImpl.sendFileAndForget(String filename, long offset, long length) Tell the operating system to stream a file as specified byfilenamedirectly from disk to the outgoing connection, bypassing userspace altogether (where supported by the underlying operating system.StreamChannel.StreamChannelImpl.shutdownHandler(Consumer<Duration> handler) Set ahandlernotified when the channel is shutdown: the client or server will close the connection within a certain amount of time.StreamChannel.StreamChannelImpl.writeAndForget(io.vertx.core.buffer.Buffer arg0) Write some data to the stream.StreamChannel.StreamChannelImpl.writeAndForget(String str) Write aStringto the connection, encoded in UTF-8.StreamChannel.StreamChannelImpl.writeAndForget(String str, String enc) Write aStringto the connection, encoded using the encodingenc.