Uses of Interface
io.vertx.mutiny.core.streams.StreamBase
-
-
Uses of StreamBase in io.vertx.mutiny.core
Classes in io.vertx.mutiny.core that implement StreamBase 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 StreamBase in io.vertx.mutiny.core.datagram
Classes in io.vertx.mutiny.core.datagram that implement StreamBase Modifier and Type Class Description classDatagramSocketA datagram socket can be used to sendDatagramPacket's to remote datagram servers and receiveDatagramPackets . -
Uses of StreamBase in io.vertx.mutiny.core.eventbus
Classes in io.vertx.mutiny.core.eventbus that implement StreamBase Modifier and Type Class Description classMessageConsumer<T>An event bus consumer object representing a stream of message to anEventBusaddress that can be read from.classMessageProducer<T>Represents a stream of message that can be written to. -
Uses of StreamBase in io.vertx.mutiny.core.file
Classes in io.vertx.mutiny.core.file that implement StreamBase Modifier and Type Class Description classAsyncFileRepresents a file on the file-system which can be read from, or written to asynchronously. -
Uses of StreamBase in io.vertx.mutiny.core.http
Subinterfaces of StreamBase in io.vertx.mutiny.core.http Modifier and Type Interface Description interfaceWebSocketBaseBase WebSocket implementation.Classes in io.vertx.mutiny.core.http that implement StreamBase Modifier and Type Class Description classHttpClientRequestRepresents a client-side HTTP request.classHttpClientResponseRepresents a client-side HTTP response.classHttpServerFileUploadRepresents an file upload from an HTML FORM.classHttpServerRequestRepresents a server-side HTTP request.classHttpServerResponseRepresents a server-side HTTP response.classServerWebSocketRepresents a server side WebSocket.classWebSocketRepresents a client-side WebSocket. -
Uses of StreamBase in io.vertx.mutiny.core.net
Classes in io.vertx.mutiny.core.net that implement StreamBase Modifier and Type Class Description classNetSocketRepresents a socket-like interface to a TCP connection on either the client or the server side. -
Uses of StreamBase in io.vertx.mutiny.core.parsetools
Classes in io.vertx.mutiny.core.parsetools that implement StreamBase 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. -
Uses of StreamBase in io.vertx.mutiny.core.streams
Subinterfaces of StreamBase in io.vertx.mutiny.core.streams Modifier and Type Interface Description interfaceReadStream<T>Represents a stream of items that can be read from.interfaceWriteStream<T>Represents a stream of data that can be written to.Methods in io.vertx.mutiny.core.streams that return StreamBase Modifier and Type Method Description StreamBaseStreamBase. exceptionHandler(Consumer<Throwable> handler)static StreamBaseStreamBase. newInstance(io.vertx.core.streams.StreamBase arg)
-