Class SubscriptionExecutionStrategy

java.lang.Object
graphql.execution.ExecutionStrategy
graphql.execution.SubscriptionExecutionStrategy

@PublicApi public class SubscriptionExecutionStrategy extends ExecutionStrategy
An execution strategy that implements graphql subscriptions by using reactive-streams as the output result of the subscription query.

Afterwards each object delivered on that stream will be mapped via running the original selection set over that object and hence producing an ExecutionResult just like a normal graphql query.

See https://spec.graphql.org/draft/#sec-Subscription

See https://www.reactive-streams.org/