org.springframework.data.gemfire.function.annotation
Annotation Type OnRegion


@Retention(value=RUNTIME)
@Target(value=TYPE)
public @interface OnRegion

Annotation to declare an interface as a GemFire OnRegion Function Execution


Required Element Summary
 String region
          A reference to the bean id of the GemFire Region.
 
Optional Element Summary
 String id
          The bean name of the POJO interface defining the GemFire Function executions.
 String resultCollector
          Optional ResultCollector bean reference.
 

Element Detail

region

public abstract String region
A reference to the bean id of the GemFire Region.

Returns:
the bean name (id) of the GemFire Region.

id

public abstract String id
The bean name of the POJO interface defining the GemFire Function executions.

Returns:
the bean name (id) of the POJO interface defining the GemFire Function executions.
Default:
""

resultCollector

public abstract String resultCollector
Optional ResultCollector bean reference.

Returns:
an optional bean name of the ResultCollector to process the Function results.
Default:
""