Uses of Interface
org.springframework.batch.support.MethodInvoker
Package
Description
Generic implementations of core batch listener interfaces.
Infrastructure implementations of support concerns.
-
Uses of MethodInvoker in org.springframework.batch.core.listener
Modifier and TypeMethodDescriptionprotected MethodInvoker
AbstractListenerFactoryBean.getMethodInvokerByName
(String methodName, Object candidate, Class<?>... params) ModifierConstructorDescriptionMethodInvokerMethodInterceptor
(Map<String, Set<MethodInvoker>> invokerMap) MethodInvokerMethodInterceptor
(Map<String, Set<MethodInvoker>> invokerMap, boolean ordered) -
Uses of MethodInvoker in org.springframework.batch.support
Modifier and TypeClassDescriptionclass
Simple implementation of theMethodInvoker
interface that invokes a method on an object.Modifier and TypeMethodDescriptionstatic MethodInvoker
MethodInvokerUtils.getMethodInvokerByAnnotation
(Class<? extends Annotation> annotationType, Object target) CreateMethodInvoker
for the method with the provided annotation on the provided object.static MethodInvoker
MethodInvokerUtils.getMethodInvokerByAnnotation
(Class<? extends Annotation> annotationType, Object target, Class<?>... expectedParamTypes) Create a MethodInvoker from the delegate based on the annotationType.static MethodInvoker
MethodInvokerUtils.getMethodInvokerByName
(Object object, String methodName, boolean paramsRequired, Class<?>... paramTypes) Create aMethodInvoker
using the provided method name to search.static MethodInvoker
MethodInvokerUtils.getMethodInvokerForInterface
(Class<?> cls, String methodName, Object object, Class<?>... paramTypes) Create aMethodInvoker
using the provided interface, and method name from that interface.static <C,
T> MethodInvoker MethodInvokerUtils.getMethodInvokerForSingleArgument
(Object target) Create aMethodInvoker
for the delegate from a single public method.