Uses of Interface
io.vertx.core.streams.WriteStream
-
Packages that use WriteStream Package Description io.vertx.core.datagram io.vertx.core.file io.vertx.core.http io.vertx.core.net io.vertx.core.streams -
-
Uses of WriteStream in io.vertx.core.datagram
Methods in io.vertx.core.datagram that return WriteStream Modifier and Type Method Description WriteStream<Buffer>DatagramSocket. sender(int port, String host) -
Uses of WriteStream in io.vertx.core.file
Subinterfaces of WriteStream in io.vertx.core.file Modifier and Type Interface Description interfaceAsyncFileRepresents 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.http Modifier and Type Interface Description interfaceClientWebSocketRepresents a client-side WebSocket.interfaceHttpClientRequestRepresents a client-side HTTP request.interfaceHttpServerResponseRepresents a server-side HTTP response.interfaceServerWebSocketRepresents a server side WebSocket.interfaceWebSocketCommon WebSocket implementation.interfaceWebSocketBaseBase WebSocket implementation. -
Uses of WriteStream in io.vertx.core.net
Subinterfaces of WriteStream in io.vertx.core.net Modifier and Type Interface Description interfaceNetSocketRepresents a socket-like interface to a TCP connection on either the client or the server side. -
Uses of WriteStream in io.vertx.core.streams
Methods in io.vertx.core.streams that return WriteStream Modifier and Type Method Description WriteStream<T>WriteStream. drainHandler(Handler<Void> handler)Set a drain handler on the stream.WriteStream<T>WriteStream. exceptionHandler(Handler<Throwable> handler)Set an exception handler on the write stream.WriteStream<T>WriteStream. setWriteQueueMaxSize(int maxSize)Set the maximum size of the write queue tomaxSize.Methods in io.vertx.core.streams with parameters of type WriteStream Modifier and Type Method Description default Future<Void>ReadStream. pipeTo(WriteStream<T> dst)Pipe thisReadStreamto theWriteStream.Future<Void>Pipe. to(WriteStream<T> dst)Start to pipe the elements to the destinationWriteStream.
-