Example usage for org.springframework.data.gemfire.function FunctionContextInjectingArgumentResolver FunctionContextInjectingArgumentResolver

List of usage examples for org.springframework.data.gemfire.function FunctionContextInjectingArgumentResolver FunctionContextInjectingArgumentResolver

Introduction

In this page you can find the example usage for org.springframework.data.gemfire.function FunctionContextInjectingArgumentResolver FunctionContextInjectingArgumentResolver.

Prototype

FunctionContextInjectingArgumentResolver(Method method) 

Source Link

Usage

From source file:org.springframework.data.gemfire.function.PojoFunctionWrapper.java

public PojoFunctionWrapper(Object target, Method method, String id) {
    this.functionArgumentResolver = new FunctionContextInjectingArgumentResolver(method);
    this.target = target;
    this.method = method;
    this.id = (StringUtils.hasText(id) ? id : method.getName());
    this.HA = false;
    this.hasResult = !(method.getReturnType().equals(void.class));
    this.optimizeForWrite = false;
}