Uses of Interface
io.vertx.mutiny.core.streams.ReadStream
Packages that use ReadStream
Package
Description
-
Uses of ReadStream in io.vertx.mutiny.core
Classes in io.vertx.mutiny.core that implement ReadStream -
Uses of ReadStream in io.vertx.mutiny.core.datagram
Classes in io.vertx.mutiny.core.datagram that implement ReadStreamModifier and TypeClassDescriptionclassA 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 ReadStreamModifier and TypeClassDescriptionclassAn 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 -
Uses of ReadStream in io.vertx.mutiny.core.file
Classes in io.vertx.mutiny.core.file that implement ReadStreamModifier and TypeClassDescriptionclassRepresents 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.httpClasses in io.vertx.mutiny.core.http that implement ReadStreamModifier and TypeClassDescriptionclassRepresents a client-side WebSocket initially not connected.classRepresents a client-side HTTP response.classRepresents an file upload from an HTML FORM.classRepresents a server-side HTTP request.classRepresents a server side WebSocket.classRepresents a client-side WebSocket.Methods in io.vertx.mutiny.core.http that return ReadStreamModifier and TypeMethodDescriptionHttpServer.requestStream()Deprecated.HttpServer.webSocketStream()Deprecated.instead useinvalid reference
#webSocketHandler(Handler)Methods in io.vertx.mutiny.core.http with parameters of type ReadStreamModifier and TypeMethodDescriptionio.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.HttpClientRequest.sendAndAwait(ReadStream<Buffer> body) Blocking variant ofHttpClientRequest.send(io.vertx.mutiny.core.streams.ReadStream).HttpServerResponse.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 ReadStreamModifier and TypeClassDescriptionclassRepresents 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 ReadStreamModifier and TypeMethodDescriptionNetServer.connectStream()Deprecated.instead useinvalid reference
#connectHandler(Handler) -
Uses of ReadStream in io.vertx.mutiny.core.parsetools
Classes in io.vertx.mutiny.core.parsetools that implement ReadStreamModifier and TypeClassDescriptionclassA parser class which allows to incrementally parse json elements and emit json parse events instead of parsing a json element fully.classA 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 ReadStreamModifier and TypeMethodDescriptionstatic 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 ReadStreamModifier and TypeMethodDescriptionReadStream.endHandler(Runnable endHandler) ReadStream.exceptionHandler(Consumer<Throwable> handler) ReadStream.fetch(long amount) 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.pause()ReadStream.resume()Methods in io.vertx.mutiny.core.streams with parameters of type ReadStreamModifier and TypeMethodDescriptionstatic <T> PumpPump.pump(ReadStream<T> rs, WriteStream<T> ws) Deprecated.static <T> PumpPump.pump(ReadStream<T> rs, WriteStream<T> ws, int writeQueueMaxSize) Deprecated.
invalid reference