Uses of Interface
io.vertx.core.streams.ReadStream
Packages that use ReadStream
Package
Description
-
Uses of ReadStream in io.vertx.amqp
Subinterfaces of ReadStream in io.vertx.amqpModifier and TypeInterfaceDescriptioninterfaceInterface used to consume AMQP message as a stream of message. -
Uses of ReadStream in io.vertx.cassandra
Subinterfaces of ReadStream in io.vertx.cassandra -
Uses of ReadStream in io.vertx.config
Methods in io.vertx.config that return ReadStream -
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. -
Uses of ReadStream in io.vertx.ext.cluster.infinispan
Methods in io.vertx.ext.cluster.infinispan that return ReadStreamModifier and TypeMethodDescriptionInfinispanAsyncMap.entryStream()Get the entries of the map as aReadStream.InfinispanAsyncMap.keyStream()Get the keys of the map as aReadStream.InfinispanAsyncMap.valueStream()Get the values of the map as aReadStream. -
Uses of ReadStream in io.vertx.ext.mail
Methods in io.vertx.ext.mail that return ReadStreamMethods in io.vertx.ext.mail with parameters of type ReadStreamModifier and TypeMethodDescriptionMailAttachment.setStream(ReadStream<Buffer> stream) Sets the data stream. -
Uses of ReadStream in io.vertx.ext.mail.mailencoder
Methods in io.vertx.ext.mail.mailencoder that return ReadStreamModifier and TypeMethodDescriptionEncodedPart.bodyStream(Context context) EncodedPart.dkimBodyStream(Context context) -
Uses of ReadStream in io.vertx.ext.mongo
Methods in io.vertx.ext.mongo that return ReadStreamModifier and TypeMethodDescriptionRun aggregate MongoDB command with defaultAggregateOptions.MongoClient.aggregateWithOptions(String collection, JsonArray pipeline, AggregateOptions options) Run aggregate MongoDB command.MongoClient.distinctBatch(String collection, String fieldName, String resultClassname) Gets the distinct values of the specified field name.MongoClient.distinctBatch(String collection, String fieldName, String resultClassname, DistinctOptions distinctOptions) Gets the distinct values of the specified field name.MongoClient.distinctBatchWithQuery(String collection, String fieldName, String resultClassname, JsonObject query) Gets the distinct values of the specified field name filtered by specified query.MongoClient.distinctBatchWithQuery(String collection, String fieldName, String resultClassname, JsonObject query, int batchSize) Gets the distinct values of the specified field name filtered by specified query.MongoClient.distinctBatchWithQuery(String collection, String fieldName, String resultClassname, JsonObject query, int batchSize, DistinctOptions distinctOptions) Gets the distinct values of the specified field name filtered by specified query.MongoClient.distinctBatchWithQuery(String collection, String fieldName, String resultClassname, JsonObject query, DistinctOptions distinctOptions) Gets the distinct values of the specified field name filtered by specified query.MongoClient.findBatch(String collection, JsonObject query) Find matching documents in the specified collection.MongoClient.findBatchWithOptions(String collection, JsonObject query, FindOptions options) Find matching documents in the specified collection, specifying options.MongoGridFsClient.readByFileName(String fileName) Read file by name to ReadStreamMongoGridFsClient.readByFileNameWithOptions(String fileName, GridFsDownloadOptions options) Read file by name to ReadStream with optionsRead file by id to ReadStreamReadStream<com.mongodb.client.model.changestream.ChangeStreamDocument<JsonObject>> Watch the collection change.Methods in io.vertx.ext.mongo with parameters of type ReadStreamModifier and TypeMethodDescriptionMongoGridFsClient.uploadByFileName(ReadStream<Buffer> stream, String fileName) MongoGridFsClient.uploadByFileNameWithOptions(ReadStream<Buffer> stream, String fileName, GridFsUploadOptions options) -
Uses of ReadStream in io.vertx.ext.reactivestreams
Subinterfaces of ReadStream in io.vertx.ext.reactivestreamsModifier and TypeInterfaceDescriptioninterfaceA Vert.x read stream that also implements reactive streams subscriber interface. -
Uses of ReadStream in io.vertx.ext.unit.report
Subinterfaces of ReadStream in io.vertx.ext.unit.reportModifier and TypeInterfaceDescriptioninterfaceThe test suite reports is basically a stream of events reporting the test suite execution. -
Uses of ReadStream in io.vertx.ext.web
Subinterfaces of ReadStream in io.vertx.ext.webModifier and TypeInterfaceDescriptioninterfaceExtends to access the routing context associated with the request. -
Uses of ReadStream in io.vertx.ext.web.client
Methods in io.vertx.ext.web.client with parameters of type ReadStreamModifier and TypeMethodDescriptionHttpRequest.sendStream(ReadStream<Buffer> body) LikeHttpRequest.send()but with an HTTP requestbodystream. -
Uses of ReadStream in io.vertx.ext.web.codec
Method parameters in io.vertx.ext.web.codec with type arguments of type ReadStream -
Uses of ReadStream in io.vertx.ext.web.handler.sockjs
Subinterfaces of ReadStream in io.vertx.ext.web.handler.sockjsModifier and TypeInterfaceDescriptioninterfaceYou interact with SockJS clients through instances of SockJS socket. -
Uses of ReadStream in io.vertx.grpc.client
Subinterfaces of ReadStream in io.vertx.grpc.clientModifier and TypeInterfaceDescriptioninterfaceGrpcClientResponse<Req,Resp> A response from a gRPC server.Methods in io.vertx.grpc.client with parameters of type ReadStreamModifier and TypeMethodDescriptiondefault Future<GrpcClientResponse<Req, Resp>> GrpcClientRequest.send(ReadStream<Req> body) -
Uses of ReadStream in io.vertx.grpc.common
Subinterfaces of ReadStream in io.vertx.grpc.common -
Uses of ReadStream in io.vertx.grpc.event.v1alpha
Methods in io.vertx.grpc.event.v1alpha that return types with arguments of type ReadStreamModifier and TypeMethodDescriptionEventBusBridge.subscribe(SubscribeOp request) EventBusBridgeClient.subscribe(SubscribeOp request) Calls the Subscribe RPC service method.EventBusBridgeService.subscribe(SubscribeOp request) Override this method to implement the Subscribe RPC. -
Uses of ReadStream in io.vertx.grpc.server
Subinterfaces of ReadStream in io.vertx.grpc.serverMethods in io.vertx.grpc.server with parameters of type ReadStream -
Uses of ReadStream in io.vertx.grpc.stub
Methods in io.vertx.grpc.stub that return ReadStreamModifier and TypeMethodDescriptionstatic <I,O> ReadStream <O> ClientCalls.manyToMany(io.vertx.core.internal.ContextInternal ctx, Handler<WriteStream<I>> requestHandler, Function<StreamObserver<O>, StreamObserver<I>> delegate) Deprecated.static <I,O> ReadStream <O> ClientCalls.manyToMany(io.vertx.core.internal.ContextInternal ctx, Handler<WriteStream<I>> requestHandler, Function<StreamObserver<O>, StreamObserver<I>> delegate, Handler<Throwable> exceptionHandler) Deprecated.static <I,O> ReadStream <O> ClientCalls.manyToMany(io.vertx.core.internal.ContextInternal ctx, Handler<WriteStream<I>> requestHandler, Function<StreamObserver<O>, StreamObserver<I>> delegate, Handler<O> handler, Handler<Void> endHandler, Handler<Throwable> exceptionHandler) Deprecated.static <I,O> ReadStream <O> ClientCalls.oneToMany(io.vertx.core.internal.ContextInternal ctx, I request, BiConsumer<I, StreamObserver<O>> delegate) Deprecated.static <I,O> ReadStream <O> ClientCalls.oneToMany(io.vertx.core.internal.ContextInternal ctx, I request, BiConsumer<I, StreamObserver<O>> delegate, Handler<O> handler, Handler<Void> endHandler, Handler<Throwable> exceptionHandler) Deprecated.Method parameters in io.vertx.grpc.stub with type arguments of type ReadStreamModifier and TypeMethodDescriptionstatic <I,O> StreamObserver <I> ServerCalls.manyToMany(StreamObserver<O> response, String compression, BiConsumer<ReadStream<I>, WriteStream<O>> delegate) Deprecated, for removal: This API element is subject to removal in a future version.static <I,O> StreamObserver <I> ServerCalls.manyToOne(StreamObserver<O> response, String compression, Function<ReadStream<I>, Future<O>> delegate) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of ReadStream in io.vertx.httpproxy
Methods in io.vertx.httpproxy that return ReadStreamMethods in io.vertx.httpproxy with parameters of type ReadStreamModifier and TypeMethodDescriptionstatic BodyBody.body(ReadStream<Buffer> stream) Create a newBodyinstance.static BodyBody.body(ReadStream<Buffer> stream, long len) Create a newBodyinstance.static BodyBody.body(ReadStream<Buffer> stream, long len, MediaType mediatype) static BodyBody.body(ReadStream<Buffer> stream, long len, String mediatype) -
Uses of ReadStream in io.vertx.kafka.client.consumer
Subinterfaces of ReadStream in io.vertx.kafka.client.consumerModifier and TypeInterfaceDescriptioninterfaceKafkaConsumer<K,V> Vert.x Kafka consumer.interfaceKafkaReadStream<K,V> AReadStreamfor consuming KafkaConsumerRecord. -
Uses of ReadStream in io.vertx.pgclient.pubsub
Subinterfaces of ReadStream in io.vertx.pgclient.pubsubModifier and TypeInterfaceDescriptioninterfaceA channel to Postgres that tracks the subscription to a given Postgres channel using theLISTEN/UNLISTENcommands. -
Uses of ReadStream in io.vertx.rabbitmq
Subinterfaces of ReadStream in io.vertx.rabbitmqModifier and TypeInterfaceDescriptioninterfaceA stream of messages from a rabbitmq queue.Methods in io.vertx.rabbitmq that return ReadStreamModifier and TypeMethodDescriptionRabbitMQPublisher.getConfirmationStream()Get the ReadStream that contains the message IDs for confirmed messages.Methods in io.vertx.rabbitmq that return types with arguments of type ReadStreamModifier and TypeMethodDescriptionRabbitMQClient.addConfirmListener(int maxQueueSize) Add a Confirm Listener to the channel. -
Uses of ReadStream in io.vertx.reactivex
Methods in io.vertx.reactivex that return ReadStreamModifier and TypeMethodDescriptionstatic <T> ReadStream<T> FlowableHelper.toReadStream(Flowable<T> observable) Adapts an RxJavaFlowable<T>to a Vert.xReadStream<T>.static <T> ReadStream<T> ObservableHelper.toReadStream(Observable<T> observable) Adapts an RxJavaObservable<T>to a Vert.xReadStream<T>.Methods in io.vertx.reactivex with parameters of type ReadStreamModifier and TypeMethodDescriptionstatic <T> Flowable<T> FlowableHelper.toFlowable(ReadStream<T> stream) Adapts a Vert.xReadStream<T>to an RxJavaFlowable<T>.static <T> Flowable<T> FlowableHelper.toFlowable(ReadStream<T> stream, long maxBufferSize) Adapts a Vert.xReadStream<T>to an RxJavaFlowable<T>.static <T,U> Flowable <U> FlowableHelper.toFlowable(ReadStream<T> stream, Function<T, U> mapping) LikeFlowableHelper.toFlowable(ReadStream)but with amappingfunctionstatic <T> Observable<T> ObservableHelper.toObservable(ReadStream<T> stream) static <T,U> Observable <U> ObservableHelper.toObservable(ReadStream<T> stream, Function<T, U> mapping) LikeObservableHelper.toObservable(ReadStream)but with amappingfunction -
Uses of ReadStream in io.vertx.reactivex.core.streams
Methods in io.vertx.reactivex.core.streams that return ReadStreamMethods in io.vertx.reactivex.core.streams with parameters of type ReadStreamModifier and TypeMethodDescriptionstatic <T> ReadStream<T> ReadStream.newInstance(ReadStream arg) static <T> ReadStream<T> ReadStream.newInstance(ReadStream arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T) -
Uses of ReadStream in io.vertx.redis.client
Subinterfaces of ReadStream in io.vertx.redis.client -
Uses of ReadStream in io.vertx.rxjava3
Methods in io.vertx.rxjava3 that return ReadStreamModifier and TypeMethodDescriptionstatic <T> ReadStream<T> FlowableHelper.toReadStream(Flowable<T> observable) Adapts an RxJavaFlowable<T>to a Vert.xReadStream<T>.static <T> ReadStream<T> ObservableHelper.toReadStream(Observable<T> observable) Adapts an RxJavaObservable<T>to a Vert.xReadStream<T>.Methods in io.vertx.rxjava3 with parameters of type ReadStreamModifier and TypeMethodDescriptionstatic <T> Flowable<T> FlowableHelper.toFlowable(ReadStream<T> stream) Adapts a Vert.xReadStream<T>to an RxJavaFlowable<T>.static <T> Flowable<T> FlowableHelper.toFlowable(ReadStream<T> stream, long maxBufferSize) Adapts a Vert.xReadStream<T>to an RxJavaFlowable<T>.static <T,U> Flowable <U> FlowableHelper.toFlowable(ReadStream<T> stream, Function<T, U> mapping) LikeFlowableHelper.toFlowable(ReadStream)but with amappingfunctionstatic <T> Observable<T> ObservableHelper.toObservable(ReadStream<T> stream) static <T,U> Observable <U> ObservableHelper.toObservable(ReadStream<T> stream, Function<T, U> mapping) LikeObservableHelper.toObservable(ReadStream)but with amappingfunctionMethod parameters in io.vertx.rxjava3 with type arguments of type ReadStreamModifier and TypeMethodDescriptionstatic <T> Flowable<T> FlowableHelper.toFlowable(Supplier<Future<ReadStream<T>>> supplier) Adapts a Vert.xReadStream<T>to an RxJavaFlowable<T>. -
Uses of ReadStream in io.vertx.rxjava3.core.streams
Methods in io.vertx.rxjava3.core.streams that return ReadStreamMethods in io.vertx.rxjava3.core.streams with parameters of type ReadStreamModifier and TypeMethodDescriptionstatic <T> ReadStream<T> ReadStream.newInstance(ReadStream arg) static <T> ReadStream<T> ReadStream.newInstance(ReadStream arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T) -
Uses of ReadStream in io.vertx.sqlclient
Subinterfaces of ReadStream in io.vertx.sqlclient