Uses of Interface
io.vertx.mutiny.core.streams.ReadStream
-
-
Uses of ReadStream in io.vertx.mutiny.amqp
Classes in io.vertx.mutiny.amqp that implement ReadStream Modifier and Type Class Description class
AmqpReceiver
Interface used to consume AMQP message as a stream of message. -
Uses of ReadStream in io.vertx.mutiny.cassandra
Classes in io.vertx.mutiny.cassandra that implement ReadStream Modifier and Type Class Description class
CassandraRowStream
A for consumption. -
Uses of ReadStream in io.vertx.mutiny.config
Methods in io.vertx.mutiny.config that return ReadStream Modifier and Type Method Description ReadStream<io.vertx.core.json.JsonObject>
ConfigRetriever. configStream()
-
Uses of ReadStream in io.vertx.mutiny.core
Classes in io.vertx.mutiny.core that implement ReadStream Modifier and Type Class Description class
TimeoutStream
A timeout stream is triggered by a timer, theHandler
will 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 class
DatagramSocket
A datagram socket can be used to sendDatagramPacket
's to remote datagram servers and receiveDatagramPacket
s . -
Uses of ReadStream in io.vertx.mutiny.core.eventbus
Classes in io.vertx.mutiny.core.eventbus that implement ReadStream Modifier and Type Class Description class
MessageConsumer<T>
An event bus consumer object representing a stream of message to anEventBus
address 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 class
AsyncFile
Represents 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 interface
WebSocketBase
Base WebSocket implementation.Classes in io.vertx.mutiny.core.http that implement ReadStream Modifier and Type Class Description class
HttpClientResponse
Represents a client-side HTTP response.class
HttpServerFileUpload
Represents an file upload from an HTML FORM.class
HttpServerRequest
Represents a server-side HTTP request.class
ServerWebSocket
Represents a server side WebSocket.class
WebSocket
Represents a client-side WebSocket.Methods in io.vertx.mutiny.core.http that return ReadStream Modifier and Type Method Description ReadStream<HttpServerRequest>
HttpServer. requestStream()
ReadStream<ServerWebSocket>
HttpServer. webSocketStream()
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
.HttpClientResponse
HttpClientRequest. sendAndAwait(ReadStream<Buffer> body)
Blocking variant ofio.vertx.mutiny.core.http.HttpClientRequest#send(io.vertx.mutiny.core.streams.ReadStream
.) Void
HttpServerResponse. sendAndAwait(ReadStream<Buffer> body)
Blocking variant ofio.vertx.mutiny.core.http.HttpServerResponse#send(io.vertx.mutiny.core.streams.ReadStream
.) void
HttpClientRequest. sendAndForget(ReadStream<Buffer> body)
Variant ofio.vertx.mutiny.core.http.HttpClientRequest#send(io.vertx.mutiny.core.streams.ReadStream
that ignores the result of the operation.) void
HttpServerResponse. sendAndForget(ReadStream<Buffer> body)
Variant ofio.vertx.mutiny.core.http.HttpServerResponse#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 class
NetSocket
Represents 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()
-
Uses of ReadStream in io.vertx.mutiny.core.parsetools
Classes in io.vertx.mutiny.core.parsetools that implement ReadStream Modifier and Type Class Description class
JsonParser
A parser class which allows to incrementally parse json elements and emit json parse events instead of parsing a json element fully.class
RecordParser
A 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 RecordParser
RecordParser. newDelimited(Buffer delim, ReadStream<Buffer> stream)
static RecordParser
RecordParser. newDelimited(String delim, ReadStream<Buffer> stream)
static RecordParser
RecordParser. newFixed(int size, ReadStream<Buffer> stream)
static JsonParser
JsonParser. 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, 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> Pump
Pump. pump(ReadStream<T> rs, WriteStream<T> ws)
static <T> Pump
Pump. pump(ReadStream<T> rs, WriteStream<T> ws, int writeQueueMaxSize)
-
Uses of ReadStream in io.vertx.mutiny.ext.mail
Methods in io.vertx.mutiny.ext.mail that return ReadStream Modifier and Type Method Description ReadStream<Buffer>
MailAttachment. getStream()
Methods in io.vertx.mutiny.ext.mail with parameters of type ReadStream Modifier and Type Method Description MailAttachment
MailAttachment. setStream(ReadStream<Buffer> stream)
-
Uses of ReadStream in io.vertx.mutiny.ext.mongo
Methods in io.vertx.mutiny.ext.mongo that return ReadStream Modifier and Type Method Description ReadStream<io.vertx.core.json.JsonObject>
MongoClient. aggregate(String collection, io.vertx.core.json.JsonArray pipeline)
ReadStream<io.vertx.core.json.JsonObject>
MongoClient. aggregateWithOptions(String collection, io.vertx.core.json.JsonArray pipeline, io.vertx.ext.mongo.AggregateOptions options)
ReadStream<io.vertx.core.json.JsonObject>
MongoClient. distinctBatch(String collection, String fieldName, String resultClassname)
ReadStream<io.vertx.core.json.JsonObject>
MongoClient. distinctBatchWithQuery(String collection, String fieldName, String resultClassname, io.vertx.core.json.JsonObject query)
ReadStream<io.vertx.core.json.JsonObject>
MongoClient. distinctBatchWithQuery(String collection, String fieldName, String resultClassname, io.vertx.core.json.JsonObject query, int batchSize)
ReadStream<io.vertx.core.json.JsonObject>
MongoClient. findBatch(String collection, io.vertx.core.json.JsonObject query)
ReadStream<io.vertx.core.json.JsonObject>
MongoClient. findBatchWithOptions(String collection, io.vertx.core.json.JsonObject query, io.vertx.ext.mongo.FindOptions options)
ReadStream<com.mongodb.client.model.changestream.ChangeStreamDocument<io.vertx.core.json.JsonObject>>
MongoClient. watch(String collection, io.vertx.core.json.JsonArray pipeline, boolean withUpdatedDoc, int batchSize)
Methods in io.vertx.mutiny.ext.mongo with parameters of type ReadStream Modifier and Type Method Description io.smallrye.mutiny.Uni<String>
MongoGridFsClient. uploadByFileName(ReadStream<Buffer> stream, String fileName)
String
MongoGridFsClient. uploadByFileNameAndAwait(ReadStream<Buffer> stream, String fileName)
MongoGridFsClient
MongoGridFsClient. uploadByFileNameAndForget(ReadStream<Buffer> stream, String fileName)
io.smallrye.mutiny.Uni<String>
MongoGridFsClient. uploadByFileNameWithOptions(ReadStream<Buffer> stream, String fileName, io.vertx.ext.mongo.GridFsUploadOptions options)
String
MongoGridFsClient. uploadByFileNameWithOptionsAndAwait(ReadStream<Buffer> stream, String fileName, io.vertx.ext.mongo.GridFsUploadOptions options)
MongoGridFsClient
MongoGridFsClient. uploadByFileNameWithOptionsAndForget(ReadStream<Buffer> stream, String fileName, io.vertx.ext.mongo.GridFsUploadOptions options)
-
Uses of ReadStream in io.vertx.mutiny.ext.sql
Classes in io.vertx.mutiny.ext.sql that implement ReadStream Modifier and Type Class Description class
SQLRowStream
A ReadStream of Rows from the underlying RDBMS.Methods in io.vertx.mutiny.ext.sql that return ReadStream Modifier and Type Method Description ReadStream<io.vertx.core.json.JsonArray>
SQLRowStream. fetch(long arg0)
-
Uses of ReadStream in io.vertx.mutiny.ext.web.client
Methods in io.vertx.mutiny.ext.web.client with parameters of type ReadStream Modifier and Type Method Description io.smallrye.mutiny.Uni<HttpResponse<T>>
HttpRequest. sendStream(ReadStream<Buffer> body)
LikeHttpRequest.send()
but with an HTTP requestbody
stream.HttpResponse<T>
HttpRequest. sendStreamAndAwait(ReadStream<Buffer> body)
Blocking variant ofio.vertx.mutiny.ext.web.client.HttpRequest#sendStream(io.vertx.mutiny.core.streams.ReadStream
.) void
HttpRequest. sendStreamAndForget(ReadStream<Buffer> body)
Variant ofio.vertx.mutiny.ext.web.client.HttpRequest#sendStream(io.vertx.mutiny.core.streams.ReadStream
that ignores the result of the operation.) -
Uses of ReadStream in io.vertx.mutiny.ext.web.handler.sockjs
Classes in io.vertx.mutiny.ext.web.handler.sockjs that implement ReadStream Modifier and Type Class Description class
SockJSSocket
You interact with SockJS clients through instances of SockJS socket. -
Uses of ReadStream in io.vertx.mutiny.kafka.client.consumer
Classes in io.vertx.mutiny.kafka.client.consumer that implement ReadStream Modifier and Type Class Description class
KafkaConsumer<K,V>
Vert.x Kafka consumer. -
Uses of ReadStream in io.vertx.mutiny.pgclient.pubsub
Classes in io.vertx.mutiny.pgclient.pubsub that implement ReadStream Modifier and Type Class Description class
PgChannel
A channel to Postgres that tracks the subscription to a given Postgres channel using theLISTEN/UNLISTEN
commands.Methods in io.vertx.mutiny.pgclient.pubsub that return ReadStream Modifier and Type Method Description ReadStream<String>
PgChannel. fetch(long arg0)
-
Uses of ReadStream in io.vertx.mutiny.rabbitmq
Classes in io.vertx.mutiny.rabbitmq that implement ReadStream Modifier and Type Class Description class
RabbitMQConsumer
A stream of messages from a rabbitmq queue.Methods in io.vertx.mutiny.rabbitmq that return ReadStream Modifier and Type Method Description ReadStream<io.vertx.rabbitmq.RabbitMQConfirmation>
RabbitMQClient. addConfirmListenerAndAwait(int maxQueueSize)
Blocking variant ofRabbitMQClient.addConfirmListener(int)
.ReadStream<io.vertx.rabbitmq.RabbitMQPublisherConfirmation>
RabbitMQPublisher. getConfirmationStream()
Methods in io.vertx.mutiny.rabbitmq that return types with arguments of type ReadStream Modifier and Type Method Description io.smallrye.mutiny.Uni<ReadStream<io.vertx.rabbitmq.RabbitMQConfirmation>>
RabbitMQClient. addConfirmListener(int maxQueueSize)
Add a Confirm Listener to the channel. -
Uses of ReadStream in io.vertx.mutiny.redis.client
Classes in io.vertx.mutiny.redis.client that implement ReadStream Modifier and Type Class Description class
RedisConnection
A simple Redis client. -
Uses of ReadStream in io.vertx.mutiny.sqlclient
Classes in io.vertx.mutiny.sqlclient that implement ReadStream Modifier and Type Class Description class
RowStream<T>
A row oriented stream.
-