File tree Expand file tree Collapse file tree
src/main/java/graphql/schema Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ public class AsyncDataFetcher<T> implements DataFetcher<CompletableFuture<T>> {
2424 * your own {@link Executor} with {@link #async(DataFetcher)} (DataFetcher, Executor)}
2525 *
2626 * @param wrappedDataFetcher the data fetcher to run asynchronously
27+ * @param <T> the type of data
2728 *
2829 * @return a {@link DataFetcher} that will run the wrappedDataFetcher asynchronously
2930 */
@@ -40,6 +41,7 @@ public static <T> AsyncDataFetcher<T> async(DataFetcher<T> wrappedDataFetcher) {
4041 *
4142 * @param wrappedDataFetcher the data fetcher to run asynchronously
4243 * @param executor the executor to run the asynchronous data fetcher in
44+ * @param <T> the type of data
4345 *
4446 * @return a {@link DataFetcher} that will run the wrappedDataFetcher asynchronously in
4547 * the given {@link Executor}
You can’t perform that action at this time.
0 commit comments