Skip to content

Commit 15f5fb4

Browse files
committed
javadoc
1 parent 8ff8a16 commit 15f5fb4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/java/graphql/servlet/BatchExecutionHandler.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,13 @@
1010
* @author Andrew Potter
1111
*/
1212
public interface BatchExecutionHandler {
13+
1314
/**
1415
* Allows separating the logic of handling batch queries from how each individual query is resolved.
1516
* @param batchedInvocationInput the batch query input
1617
* @param queryFunction Function to produce query results.
18+
* @param graphQLObjectMapper object mapper used to serialize results
19+
* @param writer request writer to ouput results.
1720
*/
1821
void handleBatch(GraphQLBatchedInvocationInput batchedInvocationInput, Writer writer, GraphQLObjectMapper graphQLObjectMapper,
1922
BiFunction<GraphQLInvocationInput, ExecutionInput, ExecutionResult> queryFunction);

0 commit comments

Comments
 (0)