Uses of Interface
io.helidon.common.reactive.Flow.Publisher
-
Packages that use Flow.Publisher Package Description io.helidon.common.reactive Common reactive library for Helidon projects.io.helidon.common.reactive.valve Reactive utilities for Helidon projects. -
-
Uses of Flow.Publisher in io.helidon.common.reactive
Subinterfaces of Flow.Publisher 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.interfaceMulti<T>Multiple items publisher facility.interfaceSingle<T>Single item publisher utility.interfaceSubscribable<T>Decorated publisher that allows subscribing to individual events with java functions.Classes in io.helidon.common.reactive that implement Flow.Publisher Modifier and Type Class Description classOriginThreadPublisher<T,U>The OriginThreadPublisher's nature is to always runFlow.Subscriber.onNext(Object)on the very same thread asOriginThreadPublisher.submit(Object).classOutputStreamPublisherOutput stream thatFlow.Publisherpublishes any data written to it asByteBufferevents.classSubmissionPublisher<T>Deprecated.This class will be removed in the next major release.Methods in io.helidon.common.reactive that return Flow.Publisher Modifier and Type Method Description static <T> Flow.Publisher<T>ReactiveStreamsAdapter. publisherToFlow(Publisher<T> publisher)Deprecated.Return aFlow.Publisherfrom aPublisher.Methods in io.helidon.common.reactive with parameters of type Flow.Publisher Modifier and Type Method Description static <T> Multi<T>Multi. from(Flow.Publisher<T> source)Create aMultiinstance wrapped around the given publisher.static <T> Single<T>Single. from(Flow.Publisher<T> source)Create aSingleinstance that publishes the first and only item received from the given publisher.static <T> reactor.core.publisher.Flux<T>ReactiveStreamsAdapter. publisherFromFlow(Flow.Publisher<T> publisher)Deprecated.Return aPublisherfrom aFlow.Publisher.Method parameters in io.helidon.common.reactive with type arguments of type Flow.Publisher Modifier and Type Method Description default <U> Multi<U>Single. mapMany(Mapper<T,Flow.Publisher<U>> mapper) -
Uses of Flow.Publisher in io.helidon.common.reactive.valve
Methods in io.helidon.common.reactive.valve that return Flow.Publisher Modifier and Type Method Description default Flow.Publisher<T>Valve. toPublisher()Transforms thisValveintoFlow.Publisherrepresentation.Methods in io.helidon.common.reactive.valve with parameters of type Flow.Publisher Modifier and Type Method Description static <T> Valve<T>Valves. from(Flow.Publisher<T> publisher)Creates aValveinstance from providedFlow.Publisher.
-