Uses of Interface
io.helidon.common.reactive.Flow.Subscriber
-
Packages that use Flow.Subscriber Package Description io.helidon.common.reactive Common reactive library for Helidon projects. -
-
Uses of Flow.Subscriber in io.helidon.common.reactive
Subinterfaces of Flow.Subscriber in io.helidon.common.reactive Modifier and Type Interface Description static interfaceFlow.Processor<T,R>A component that acts as both a Subscriber and Publisher.Methods in io.helidon.common.reactive that return Flow.Subscriber Modifier and Type Method Description Flow.Subscriber<? super T>SingleSubscriberHolder. get()Get the stored subscriber.static <T> Flow.Subscriber<T>ReactiveStreamsAdapter. subscriberToFlow(Subscriber<T> subscriber)Deprecated.Return aFlow.Subscriberfrom aSubscriber.Methods in io.helidon.common.reactive with parameters of type Flow.Subscriber Modifier and Type Method Description booleanSingleSubscriberHolder. register(Flow.Subscriber<? super T> subscriber)Register a new subscriber.voidFlow.Publisher. subscribe(Flow.Subscriber<? super T> subscriber)Adds the given Subscriber if possible.voidOriginThreadPublisher. subscribe(Flow.Subscriber<? super T> originalSubscriber)voidOutputStreamPublisher. subscribe(Flow.Subscriber<? super ByteBuffer> subscriberParam)voidSubmissionPublisher. subscribe(Flow.Subscriber<? super T> subscriber)Deprecated.Adds the given Subscriber.static <T> Subscriber<T>ReactiveStreamsAdapter. subscriberFromFlow(Flow.Subscriber<T> subscriber)Deprecated.Return aSubscriberfrom aFlow.Subscriber.Method parameters in io.helidon.common.reactive with type arguments of type Flow.Subscriber Modifier and Type Method Description voidSingleSubscriberHolder. close(Consumer<Flow.Subscriber<? super T>> completionHandler)Mark the subscriber holder as closed.voidSubmissionPublisher. offer(T item, BiPredicate<Flow.Subscriber<? super T>,? super T> onDrop)Deprecated.Publishes the given item to each current subscriber.
-