Module mutiny.zero.flow.adapters
Package mutiny.zero.flow.adapters
Interface AdaptersToReactiveStreams
public interface AdaptersToReactiveStreams
Adapters from
Flow
types to Reactive Streams types.-
Method Summary
Static MethodsModifier and TypeMethodDescriptionstatic <T,
R> org.reactivestreams.Processor<T, R> processor
(Flow.Processor<T, R> processor) Convert aFlow.Processor
to aProcessor
.static <T> org.reactivestreams.Publisher<T>
publisher
(Flow.Publisher<T> publisher) Convert aFlow.Publisher
to aPublisher
.static <T> org.reactivestreams.Subscriber<T>
subscriber
(Flow.Subscriber<T> subscriber) Convert aFlow.Subscriber
to aSubscriber
.static org.reactivestreams.Subscription
subscription
(Flow.Subscription subscription) Convert aFlow.Subscription
to aSubscription
.
-
Method Details
-
publisher
Convert aFlow.Publisher
to aPublisher
.- Type Parameters:
T
- the items type- Parameters:
publisher
- the publisher- Returns:
- the wrapped publisher
-
subscriber
Convert aFlow.Subscriber
to aSubscriber
.- Type Parameters:
T
- the items type- Parameters:
subscriber
- the subscriber- Returns:
- the wrapped subscriber
-
subscription
Convert aFlow.Subscription
to aSubscription
.- Parameters:
subscription
- the subscription- Returns:
- the wrapped subscription
-
processor
Convert aFlow.Processor
to aProcessor
.- Type Parameters:
T
- the items typeR
- the output items type- Parameters:
processor
- the processor- Returns:
- the wrapped processor
-