Uses of Class
graphql.schema.AsyncDataFetcher
-
Packages that use AsyncDataFetcher Package Description graphql.schema -
-
Uses of AsyncDataFetcher in graphql.schema
Methods in graphql.schema that return AsyncDataFetcher Modifier and Type Method Description static <T> AsyncDataFetcher<T>
AsyncDataFetcher. async(DataFetcher<T> wrappedDataFetcher)
A factory method for creating asynchronous data fetchers so that when used with static imports allows more readable code such as:static <T> AsyncDataFetcher<T>
AsyncDataFetcher. async(DataFetcher<T> wrappedDataFetcher, java.util.concurrent.Executor executor)
A factory method for creating asynchronous data fetchers and setting theExecutor
they run in so that when used with static imports allows more readable code such as:
-