Uses of Class
org.springframework.graphql.data.method.HandlerMethod
Packages that use HandlerMethod
Package
Description
Support for DataFetcher's based on handler methods typically annotated with
SchemaMapping
annotations.Resolvers for method parameters of annotated handler methods.
-
Uses of HandlerMethod in org.springframework.graphql.data.method
Subclasses of HandlerMethod in org.springframework.graphql.data.methodModifier and TypeClassDescriptionclass
Extension ofHandlerMethod
that adds support for invoking the underlying handler methods.Methods in org.springframework.graphql.data.method that return HandlerMethodModifier and TypeMethodDescriptionHandlerMethod.createWithResolvedBean()
If the provided instance contains a bean name rather than an object instance, the bean name is resolved before aHandlerMethod
is created and returned.Constructors in org.springframework.graphql.data.method with parameters of type HandlerMethodModifierConstructorDescriptionprotected
HandlerMethod
(HandlerMethod handlerMethod) Copy constructor for use from subclasses that accept more arguments.protected
InvocableHandlerMethodSupport
(HandlerMethod handlerMethod, Executor executor) Create an instance. -
Uses of HandlerMethod in org.springframework.graphql.data.method.annotation.support
Subclasses of HandlerMethod in org.springframework.graphql.data.method.annotation.supportModifier and TypeClassDescriptionclass
An extension ofHandlerMethod
for annotated handler methods adapted toBatchLoaderWithContext
orMappedBatchLoaderWithContext
with the list of keys andBatchLoaderEnvironment
as their input.class
An extension ofHandlerMethod
for annotated handler methods adapted toDataFetcher
withDataFetchingEnvironment
as their input.Constructors in org.springframework.graphql.data.method.annotation.support with parameters of type HandlerMethodModifierConstructorDescriptionBatchLoaderHandlerMethod
(HandlerMethod handlerMethod, Executor executor) DataFetcherHandlerMethod
(HandlerMethod handlerMethod, HandlerMethodArgumentResolverComposite resolvers, BiConsumer<Object, Object[]> validationHelper, Executor executor, boolean subscription) Constructor with a parent handler method.