Uses of Interface
io.smallrye.mutiny.vertx.WriteStreamSubscriber
-
Packages that use WriteStreamSubscriber Package Description io.smallrye.mutiny.vertx io.smallrye.mutiny.vertx.impl -
-
Uses of WriteStreamSubscriber in io.smallrye.mutiny.vertx
Methods in io.smallrye.mutiny.vertx that return WriteStreamSubscriber Modifier and Type Method Description WriteStreamSubscriber<T>WriteStreamSubscriber. onComplete(Runnable callback)Sets the handler to invoke on completion events.WriteStreamSubscriber<T>WriteStreamSubscriber. onFailure(Consumer<? super Throwable> callback)Sets the handler to invoke on failure events.WriteStreamSubscriber<T>WriteStreamSubscriber. onWriteStreamError(Consumer<? super Throwable> callback)Sets the handler to invoke if the adaptedWriteStreamfails.static <T> WriteStreamSubscriber<T>MutinyHelper. toSubscriber(io.vertx.core.streams.WriteStream<T> stream)Adapts a Vert.xWriteStreamto a MutinySubscriber.static <R,T>
WriteStreamSubscriber<R>MutinyHelper. toSubscriber(io.vertx.core.streams.WriteStream<T> stream, Function<R,T> mapping)LikeMutinyHelper.toSubscriber(WriteStream), except the providedmappingfunction is applied to each item. -
Uses of WriteStreamSubscriber in io.smallrye.mutiny.vertx.impl
Classes in io.smallrye.mutiny.vertx.impl that implement WriteStreamSubscriber Modifier and Type Class Description classWriteStreamSubscriberImpl<I,O>Methods in io.smallrye.mutiny.vertx.impl that return WriteStreamSubscriber Modifier and Type Method Description WriteStreamSubscriber<I>WriteStreamSubscriberImpl. onComplete(Runnable handler)WriteStreamSubscriber<I>WriteStreamSubscriberImpl. onFailure(Consumer<? super Throwable> handler)WriteStreamSubscriber<I>WriteStreamSubscriberImpl. onWriteStreamError(Consumer<? super Throwable> handler)
-