Uses of Interface
io.vertx.core.streams.ReadStream
Packages that use ReadStream
Package
Description
-
Uses of ReadStream in io.vertx.core.eventbus
Subinterfaces of ReadStream in io.vertx.core.eventbusModifier and TypeInterfaceDescriptioninterfaceAn event bus consumer object representing a stream of message to anEventBusaddress that can be read from.Methods in io.vertx.core.eventbus that return ReadStream -
Uses of ReadStream in io.vertx.core.file
Subinterfaces of ReadStream in io.vertx.core.fileModifier and TypeInterfaceDescriptioninterfaceRepresents a file on the file-system which can be read from, or written to asynchronously. -
Uses of ReadStream in io.vertx.core.http
Subinterfaces of ReadStream in io.vertx.core.httpModifier and TypeInterfaceDescriptioninterfaceRepresents a client-side WebSocket.interfaceRepresents a client-side HTTP response.interfaceRepresents an file upload from an HTML FORM.interfaceRepresents a server-side HTTP request.interfaceRepresents a server side WebSocket.interfaceCommon WebSocket implementation.interfaceBase WebSocket implementation.Methods in io.vertx.core.http with parameters of type ReadStreamModifier and TypeMethodDescriptiondefault Future<HttpClientResponse> HttpClientRequest.send(ReadStream<Buffer> body) Send the request with a streambody.HttpServerResponse.send(ReadStream<Buffer> body) Send the request with a streambody. -
Uses of ReadStream in io.vertx.core.net
Subinterfaces of ReadStream 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 ReadStream in io.vertx.core.parsetools
Subinterfaces of ReadStream in io.vertx.core.parsetoolsModifier and TypeInterfaceDescriptioninterfaceA parser class which allows to incrementally parse json elements and emit json parse events instead of parsing a json element fully.interfaceA 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.core.parsetools with parameters of type ReadStreamModifier and TypeMethodDescriptionstatic RecordParserRecordParser.newDelimited(Buffer delim, ReadStream<Buffer> stream) LikeRecordParser.newDelimited(Buffer)but wraps thestream.static RecordParserRecordParser.newDelimited(String delim, ReadStream<Buffer> stream) LikeRecordParser.newDelimited(String)but wraps thestream.static RecordParserRecordParser.newFixed(int size, ReadStream<Buffer> stream) LikeRecordParser.newFixed(int)but wraps thestream.static JsonParserJsonParser.newParser(ReadStream<Buffer> stream) Create a newJsonParserinstance. -
Uses of ReadStream in io.vertx.core.streams
Methods in io.vertx.core.streams that return ReadStreamModifier and TypeMethodDescriptionReadStream.endHandler(Handler<Void> endHandler) Set an end handler.ReadStream.exceptionHandler(Handler<Throwable> handler) Set an exception handler on the read stream.ReadStream.fetch(long amount) Fetch the specifiedamountof elements.Set a data handler.ReadStream.pause()Pause theReadStream, it sets the buffer infetchmode and clears the actual demand.ReadStream.resume()Resume reading, and sets the buffer inflowingmode.