Interface GraphQLExecutionResultHandler
-
- All Known Implementing Classes:
DefaultGraphQLExecutionResultHandler
public interface GraphQLExecutionResultHandlerAn interface for handling GraphQLExecutionResults.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.reactivestreams.Publisher<GraphQLResponseBody>handleExecutionResult(org.reactivestreams.Publisher<graphql.ExecutionResult> executionResultPublisher)Handles the execution result by converting the provided execution result publisher to a publisher that emitsGraphQLResponseBodyobjects.
-
-
-
Method Detail
-
handleExecutionResult
org.reactivestreams.Publisher<GraphQLResponseBody> handleExecutionResult(org.reactivestreams.Publisher<graphql.ExecutionResult> executionResultPublisher)
Handles the execution result by converting the provided execution result publisher to a publisher that emitsGraphQLResponseBodyobjects.- Parameters:
executionResultPublisher- the execution result- Returns:
- the response body
-
-