Uses of Interface
io.vertx.core.streams.ReadStream
-
Packages that use ReadStream Package Description io.vertx.core.eventbus io.vertx.core.file io.vertx.core.http io.vertx.core.net io.vertx.core.parsetools io.vertx.core.streams -
-
Uses of ReadStream in io.vertx.core.eventbus
Subinterfaces of ReadStream in io.vertx.core.eventbus Modifier and Type Interface Description interfaceMessageConsumer<T>An 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 Modifier and Type Method Description ReadStream<T>MessageConsumer. bodyStream() -
Uses of ReadStream in io.vertx.core.file
Subinterfaces of ReadStream 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 ReadStream in io.vertx.core.http
Subinterfaces of ReadStream in io.vertx.core.http Modifier and Type Interface Description interfaceClientWebSocketRepresents a client-side WebSocket.interfaceHttpClientResponseRepresents a client-side HTTP response.interfaceHttpServerFileUploadRepresents an file upload from an HTML FORM.interfaceHttpServerRequestRepresents a server-side HTTP request.interfaceServerWebSocketRepresents a server side WebSocket.interfaceWebSocketCommon WebSocket implementation.interfaceWebSocketBaseBase WebSocket implementation.Methods in io.vertx.core.http with parameters of type ReadStream Modifier and Type Method Description default Future<HttpClientResponse>HttpClientRequest. send(ReadStream<Buffer> body)Send the request with a streambody.default Future<Void>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.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 ReadStream in io.vertx.core.parsetools
Subinterfaces of ReadStream in io.vertx.core.parsetools Modifier and Type Interface Description interfaceJsonParserA parser class which allows to incrementally parse json elements and emit json parse events instead of parsing a json element fully.interfaceRecordParserA 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 ReadStream Modifier and Type Method Description static 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 ReadStream Modifier and Type Method Description ReadStream<T>ReadStream. endHandler(Handler<Void> endHandler)Set an end handler.ReadStream<T>ReadStream. exceptionHandler(Handler<Throwable> handler)Set an exception handler on the read stream.ReadStream<T>ReadStream. fetch(long amount)Fetch the specifiedamountof elements.ReadStream<T>ReadStream. handler(Handler<T> handler)Set a data handler.ReadStream<T>ReadStream. pause()Pause theReadStream, it sets the buffer infetchmode and clears the actual demand.ReadStream<T>ReadStream. resume()Resume reading, and sets the buffer inflowingmode.
-