-
public interface AdaptersToFlowAdapters from Reactive Streams types toFlowtypes.
-
-
Method Summary
Static Methods Modifier and Type Method Description static <T,R>
java.util.concurrent.Flow.Processor<T,R>processor(org.reactivestreams.Processor<T,R> processor)Convert aProcessorto aFlow.Processor.static <T> java.util.concurrent.Flow.Publisher<T>publisher(org.reactivestreams.Publisher<T> publisher)Convert aPublisherto aFlow.Publisher.static <T> java.util.concurrent.Flow.Subscriber<T>subscriber(org.reactivestreams.Subscriber<T> subscriber)Convert aSubscriberto aFlow.Subscriber.static java.util.concurrent.Flow.Subscriptionsubscription(org.reactivestreams.Subscription subscription)Convert aSubscriptionto aFlow.Subscription.
-
-
-
Method Detail
-
publisher
static <T> java.util.concurrent.Flow.Publisher<T> publisher(org.reactivestreams.Publisher<T> publisher)
Convert aPublisherto aFlow.Publisher.- Type Parameters:
T- the items type- Parameters:
publisher- the publisher- Returns:
- the wrapped publisher
-
subscriber
static <T> java.util.concurrent.Flow.Subscriber<T> subscriber(org.reactivestreams.Subscriber<T> subscriber)
Convert aSubscriberto aFlow.Subscriber.- Type Parameters:
T- the items type- Parameters:
subscriber- the subscriber- Returns:
- the wrapped subscriber
-
subscription
static java.util.concurrent.Flow.Subscription subscription(org.reactivestreams.Subscription subscription)
Convert aSubscriptionto aFlow.Subscription.- Parameters:
subscription- the subscription- Returns:
- the wrapped subscription
-
processor
static <T,R> java.util.concurrent.Flow.Processor<T,R> processor(org.reactivestreams.Processor<T,R> processor)
Convert aProcessorto aFlow.Processor.- Type Parameters:
T- the items typeR- the output items type- Parameters:
processor- the processor- Returns:
- the wrapped processor
-
-