Uses of Interface
io.vertx.mutiny.core.streams.ReadStream
-
-
Uses of ReadStream in io.vertx.mutiny.core
Classes in io.vertx.mutiny.core that implement ReadStream Modifier and Type Class Description classTimeoutStreamA timeout stream is triggered by a timer, theHandlerwill be call when the timer is fired, it can be once or several times depending on the nature of the timer related to this stream. -
Uses of ReadStream in io.vertx.mutiny.core.datagram
Classes in io.vertx.mutiny.core.datagram that implement ReadStream Modifier and Type Class Description classDatagramSocketA datagram socket can be used to sendDatagramPacket's to remote datagram servers and receiveDatagramPackets . -
Uses of ReadStream in io.vertx.mutiny.core.eventbus
Classes in io.vertx.mutiny.core.eventbus that implement ReadStream Modifier and Type Class Description classMessageConsumer<T>An event bus consumer object representing a stream of message to anEventBusaddress that can be read from.Methods in io.vertx.mutiny.core.eventbus that return ReadStream Modifier and Type Method Description ReadStream<T>MessageConsumer. bodyStream() -
Uses of ReadStream in io.vertx.mutiny.core.file
Classes in io.vertx.mutiny.core.file that implement ReadStream Modifier and Type Class Description classAsyncFileRepresents a file on the file-system which can be read from, or written to asynchronously. -
Uses of ReadStream in io.vertx.mutiny.core.http
Subinterfaces of ReadStream in io.vertx.mutiny.core.http Modifier and Type Interface Description interfaceWebSocketBaseBase WebSocket implementation.Classes in io.vertx.mutiny.core.http that implement ReadStream Modifier and Type Class Description classClientWebSocketRepresents a client-side WebSocket initially not connected.classHttpClientResponseRepresents a client-side HTTP response.classHttpServerFileUploadRepresents an file upload from an HTML FORM.classHttpServerRequestRepresents a server-side HTTP request.classServerWebSocketRepresents a server side WebSocket.classWebSocketRepresents a client-side WebSocket.Methods in io.vertx.mutiny.core.http that return ReadStream Modifier and Type Method Description ReadStream<HttpServerRequest>HttpServer. requestStream()Deprecated.instead use#requestHandler(Handler)ReadStream<ServerWebSocket>HttpServer. webSocketStream()Deprecated.instead use#webSocketHandler(Handler)Methods in io.vertx.mutiny.core.http with parameters of type ReadStream Modifier and Type Method Description io.smallrye.mutiny.Uni<HttpClientResponse>HttpClientRequest. send(ReadStream<Buffer> body)Send the request with a streambody.io.smallrye.mutiny.Uni<Void>HttpServerResponse. send(ReadStream<Buffer> body)Send the request with a streambody.HttpClientResponseHttpClientRequest. sendAndAwait(ReadStream<Buffer> body)Blocking variant ofHttpClientRequest.send(io.vertx.mutiny.core.streams.ReadStream).VoidHttpServerResponse. sendAndAwait(ReadStream<Buffer> body)Blocking variant ofHttpServerResponse.send(io.vertx.mutiny.core.streams.ReadStream).voidHttpClientRequest. sendAndForget(ReadStream<Buffer> body)Variant ofHttpClientRequest.send(io.vertx.mutiny.core.streams.ReadStream)that ignores the result of the operation.voidHttpServerResponse. sendAndForget(ReadStream<Buffer> body)Variant ofHttpServerResponse.send(io.vertx.mutiny.core.streams.ReadStream)that ignores the result of the operation. -
Uses of ReadStream in io.vertx.mutiny.core.net
Classes in io.vertx.mutiny.core.net that implement ReadStream Modifier and Type Class Description classNetSocketRepresents a socket-like interface to a TCP connection on either the client or the server side.Methods in io.vertx.mutiny.core.net that return ReadStream Modifier and Type Method Description ReadStream<NetSocket>NetServer. connectStream()Deprecated.instead use#connectHandler(Handler) -
Uses of ReadStream in io.vertx.mutiny.core.parsetools
Classes in io.vertx.mutiny.core.parsetools that implement ReadStream Modifier and Type Class Description classJsonParserA parser class which allows to incrementally parse json elements and emit json parse events instead of parsing a json element fully.classRecordParserA helper class which allows you to easily parse protocols which are delimited by a sequence of bytes, or fixed size records.Methods in io.vertx.mutiny.core.parsetools with parameters of type ReadStream Modifier and Type Method Description static RecordParserRecordParser. newDelimited(Buffer delim, ReadStream<Buffer> stream)static RecordParserRecordParser. newDelimited(String delim, ReadStream<Buffer> stream)static RecordParserRecordParser. newFixed(int size, ReadStream<Buffer> stream)static JsonParserJsonParser. newParser(ReadStream<Buffer> stream) -
Uses of ReadStream in io.vertx.mutiny.core.streams
Methods in io.vertx.mutiny.core.streams that return ReadStream Modifier and Type Method Description ReadStream<T>ReadStream. endHandler(Runnable endHandler)ReadStream<T>ReadStream. exceptionHandler(Consumer<Throwable> handler)ReadStream<T>ReadStream. fetch(long amount)ReadStream<T>ReadStream. handler(Consumer<T> handler)static <T> ReadStream<T>ReadStream. newInstance(io.vertx.core.streams.ReadStream arg)static <T> ReadStream<T>ReadStream. newInstance(io.vertx.core.streams.ReadStream arg, io.smallrye.mutiny.vertx.TypeArg<T> __typeArg_T)ReadStream<T>ReadStream. pause()ReadStream<T>ReadStream. resume()Methods in io.vertx.mutiny.core.streams with parameters of type ReadStream Modifier and Type Method Description static <T> PumpPump. pump(ReadStream<T> rs, WriteStream<T> ws)Deprecated.static <T> PumpPump. pump(ReadStream<T> rs, WriteStream<T> ws, int writeQueueMaxSize)Deprecated.
-