Uses of Interface
io.vertx.core.streams.WriteStream
Packages that use WriteStream
Package
Description
-
Uses of WriteStream in io.vertx.amqp
Subinterfaces of WriteStream in io.vertx.amqpModifier and TypeInterfaceDescriptioninterfaceAMQP Sender interface used to send messages. -
Uses of WriteStream in io.vertx.cassandra
Methods in io.vertx.cassandra with parameters of type WriteStreamModifier and TypeMethodDescriptionCassandraRowStream.pipeTo(WriteStream<com.datastax.oss.driver.api.core.cql.Row> dst) -
Uses of WriteStream in io.vertx.core.datagram
Methods in io.vertx.core.datagram that return WriteStreamModifier and TypeMethodDescription -
Uses of WriteStream in io.vertx.core.file
Subinterfaces of WriteStream in io.vertx.core.fileModifier and TypeInterfaceDescriptioninterfaceRepresents a file on the file-system which can be read from, or written to asynchronously. -
Uses of WriteStream in io.vertx.core.http
Subinterfaces of WriteStream in io.vertx.core.httpModifier and TypeInterfaceDescriptioninterfaceRepresents a client-side WebSocket.interfaceRepresents a client-side HTTP request.interfaceRepresents a server-side HTTP response.interfaceRepresents a server side WebSocket.interfaceCommon WebSocket implementation.interfaceBase WebSocket implementation. -
Uses of WriteStream in io.vertx.core.net
Subinterfaces of WriteStream 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 WriteStream in io.vertx.core.streams
Methods in io.vertx.core.streams that return WriteStreamModifier and TypeMethodDescriptionWriteStream.drainHandler(Handler<Void> handler) Set a drain handler on the stream.WriteStream.exceptionHandler(Handler<Throwable> handler) Set an exception handler on the write stream.WriteStream.setWriteQueueMaxSize(int maxSize) Set the maximum size of the write queue tomaxSize.Methods in io.vertx.core.streams with parameters of type WriteStreamModifier and TypeMethodDescriptionReadStream.pipeTo(WriteStream<T> dst) Pipe thisReadStreamto theWriteStream.Pipe.to(WriteStream<T> dst) Start to pipe the elements to the destinationWriteStream. -
Uses of WriteStream in io.vertx.ext.mongo
Methods in io.vertx.ext.mongo with parameters of type WriteStreamModifier and TypeMethodDescriptionMongoGridFsClient.downloadByFileName(WriteStream<Buffer> stream, String fileName) MongoGridFsClient.downloadByFileNameWithOptions(WriteStream<Buffer> stream, String fileName, GridFsDownloadOptions options) MongoGridFsClient.downloadById(WriteStream<Buffer> stream, String id) -
Uses of WriteStream in io.vertx.ext.reactivestreams
Subinterfaces of WriteStream in io.vertx.ext.reactivestreamsModifier and TypeInterfaceDescriptioninterfaceA Vert.x write stream that also implements reactive streams publisher interface. -
Uses of WriteStream in io.vertx.ext.web.codec
Methods in io.vertx.ext.web.codec with parameters of type WriteStreamModifier and TypeMethodDescriptionBodyCodec.pipe(WriteStream<Buffer> stream) A body codec that pipes the body to a write stream.BodyCodec.pipe(WriteStream<Buffer> stream, boolean close) A body codec that pipes the body to a write stream. -
Uses of WriteStream in io.vertx.ext.web.codec.spi
Subinterfaces of WriteStream in io.vertx.ext.web.codec.spiModifier and TypeInterfaceDescriptioninterfaceBodyStream<T>The body stream decodes aWriteStream<Buffer>into the aTinstance. -
Uses of WriteStream in io.vertx.ext.web.handler.sockjs
Subinterfaces of WriteStream in io.vertx.ext.web.handler.sockjsModifier and TypeInterfaceDescriptioninterfaceYou interact with SockJS clients through instances of SockJS socket. -
Uses of WriteStream in io.vertx.grpc.client
Subinterfaces of WriteStream in io.vertx.grpc.clientModifier and TypeInterfaceDescriptioninterfaceGrpcClientRequest<Req,Resp> A request to a gRPC server. -
Uses of WriteStream in io.vertx.grpc.common
Subinterfaces of WriteStream in io.vertx.grpc.common -
Uses of WriteStream in io.vertx.grpc.event.v1alpha
Methods in io.vertx.grpc.event.v1alpha with parameters of type WriteStreamModifier and TypeMethodDescriptionprotected voidEventBusBridgeService.subscribe(SubscribeOp request, WriteStream<EventBusMessage> response) -
Uses of WriteStream in io.vertx.grpc.server
Subinterfaces of WriteStream in io.vertx.grpc.server -
Uses of WriteStream in io.vertx.grpc.stub
Classes in io.vertx.grpc.stub that implement WriteStreamMethods in io.vertx.grpc.stub that return WriteStreamModifier and TypeMethodDescriptionGrpcWriteStream.drainHandler(Handler<Void> hndlr) Deprecated.GrpcWriteStream.exceptionHandler(Handler<Throwable> hndlr) Deprecated.GrpcWriteStream.setWriteQueueMaxSize(int i) Deprecated.Method parameters in io.vertx.grpc.stub with type arguments of type WriteStreamModifier 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> 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> Future <O> ClientCalls.manyToOne(io.vertx.core.internal.ContextInternal ctx, Handler<WriteStream<I>> requestHandler, Function<StreamObserver<O>, StreamObserver<I>> delegate) Deprecated.static <I,O> void ServerCalls.oneToMany(I request, StreamObserver<O> response, String compression, BiConsumer<I, WriteStream<O>> delegate) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of WriteStream in io.vertx.kafka.client.producer
Subinterfaces of WriteStream in io.vertx.kafka.client.producerModifier and TypeInterfaceDescriptioninterfaceKafkaProducer<K,V> Vert.x Kafka producer.interfaceKafkaWriteStream<K,V> AWriteStreamfor writing to KafkaProducerRecord. -
Uses of WriteStream in io.vertx.reactivex
Methods in io.vertx.reactivex with parameters of type WriteStreamModifier and TypeMethodDescriptionstatic <T> WriteStreamObserver<T> RxHelper.toObserver(WriteStream<T> stream) Adapts a Vert.xWriteStreamto an RxJavaObserver.static <R,T> WriteStreamObserver <R> RxHelper.toObserver(WriteStream<T> stream, Function<R, T> mapping) LikeRxHelper.toObserver(WriteStream), except the providedmappingfunction is applied to eachObservableitem.static <T> WriteStreamSubscriber<T> RxHelper.toSubscriber(WriteStream<T> stream) Adapts a Vert.xWriteStreamto an RxJavaSubscriber.static <R,T> WriteStreamSubscriber <R> RxHelper.toSubscriber(WriteStream<T> stream, Function<R, T> mapping) LikeRxHelper.toSubscriber(WriteStream), except the providedmappingfunction is applied to eachFlowableitem. -
Uses of WriteStream in io.vertx.reactivex.core.streams
Methods in io.vertx.reactivex.core.streams that return WriteStreamMethods in io.vertx.reactivex.core.streams with parameters of type WriteStreamModifier and TypeMethodDescriptionstatic <T> WriteStream<T> WriteStream.newInstance(WriteStream arg) static <T> WriteStream<T> WriteStream.newInstance(WriteStream arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T) -
Uses of WriteStream in io.vertx.rxjava3
Methods in io.vertx.rxjava3 with parameters of type WriteStreamModifier and TypeMethodDescriptionstatic <T> WriteStreamObserver<T> RxHelper.toObserver(WriteStream<T> stream) Adapts a Vert.xWriteStreamto an RxJavaObserver.static <R,T> WriteStreamObserver <R> RxHelper.toObserver(WriteStream<T> stream, Function<R, T> mapping) LikeRxHelper.toObserver(WriteStream), except the providedmappingfunction is applied to eachObservableitem.static <T> WriteStreamSubscriber<T> RxHelper.toSubscriber(WriteStream<T> stream) Adapts a Vert.xWriteStreamto an RxJavaSubscriber.static <R,T> WriteStreamSubscriber <R> RxHelper.toSubscriber(WriteStream<T> stream, Function<R, T> mapping) LikeRxHelper.toSubscriber(WriteStream), except the providedmappingfunction is applied to eachFlowableitem. -
Uses of WriteStream in io.vertx.rxjava3.core.streams
Methods in io.vertx.rxjava3.core.streams that return WriteStreamMethods in io.vertx.rxjava3.core.streams with parameters of type WriteStreamModifier and TypeMethodDescriptionstatic <T> WriteStream<T> WriteStream.newInstance(WriteStream arg) static <T> WriteStream<T> WriteStream.newInstance(WriteStream arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T)