Uses of Interface
org.eclipse.microprofile.reactive.streams.operators.spi.Graph
Packages that use Graph
Package
Description
The Reactive Streams utils SPI.
-
Uses of Graph in org.eclipse.microprofile.reactive.streams.operators.spi
Methods in org.eclipse.microprofile.reactive.streams.operators.spi that return GraphModifier and TypeMethodDescriptionStage.Concat.getFirst()The first graph in the stream.Stage.Coupled.getPublisher()Get the publisher graph.Stage.Concat.getSecond()The second graph in the stream.Stage.Coupled.getSubscriber()Get the subscriber graph.ToGraphable.toGraph()Convert this builder to aGraph.Methods in org.eclipse.microprofile.reactive.streams.operators.spi that return types with arguments of type GraphModifier and TypeMethodDescriptionStage.OnErrorResumeWith.getFunction()The error handler.Stage.FlatMap.getMapper()The mapper function.Methods in org.eclipse.microprofile.reactive.streams.operators.spi with parameters of type GraphModifier and TypeMethodDescription<T> CompletionStage<T>ReactiveStreamsEngine.buildCompletion(Graph graph) Build a closed graph from the given stages.<T,R> org.reactivestreams.Processor<T, R> ReactiveStreamsEngine.buildProcessor(Graph graph) Build aProcessorfrom the given stages.<T> org.reactivestreams.Publisher<T>ReactiveStreamsEngine.buildPublisher(Graph graph) Build aPublisherfrom the given stages.<T,R> SubscriberWithCompletionStage<T, R> ReactiveStreamsEngine.buildSubscriber(Graph graph) Build aSubscriberfrom the given stages.