Uses of Interface
io.vertx.core.streams.WriteStream
Packages that use WriteStream
Package
Description
-
Uses of WriteStream in io.vertx.core.datagram
Methods in io.vertx.core.datagram that return WriteStreamModifier and TypeMethodDescription -
Uses of WriteStream in io.vertx.core.file
Subinterfaces of WriteStream in io.vertx.core.fileModifier and TypeInterfaceDescriptioninterfaceRepresents a file on the file-system which can be read from, or written to asynchronously. -
Uses of WriteStream in io.vertx.core.http
Subinterfaces of WriteStream in io.vertx.core.httpModifier and TypeInterfaceDescriptioninterfaceRepresents a client-side WebSocket.interfaceRepresents a client-side HTTP request.interfaceRepresents a server-side HTTP response.interfaceRepresents a server side WebSocket.interfaceCommon WebSocket implementation.interfaceBase WebSocket implementation. -
Uses of WriteStream in io.vertx.core.net
Subinterfaces of WriteStream in io.vertx.core.netModifier and TypeInterfaceDescriptioninterfaceRepresents a socket-like interface to a TCP connection on either the client or the server side.interfaceA Quic stream.interfaceRepresents a channel interface modelling a duplex flow controlled byte oriented stream. -
Uses of WriteStream in io.vertx.core.streams
Methods in io.vertx.core.streams that return WriteStreamModifier and TypeMethodDescriptionWriteStream.drainHandler(Handler<Void> handler) Set a drain handler on the stream.WriteStream.exceptionHandler(Handler<Throwable> handler) Set an exception handler on the write stream.WriteStream.setWriteQueueMaxSize(int maxSize) Set the maximum size of the write queue tomaxSize.Methods in io.vertx.core.streams with parameters of type WriteStreamModifier and TypeMethodDescriptionReadStream.pipeTo(WriteStream<T> dst) Pipe thisReadStreamto theWriteStream.Pipe.to(WriteStream<T> dst) Start to pipe the elements to the destinationWriteStream.