public class GemfireOnRegionFunctionTemplate extends Object implements GemfireOnRegionOperations
AbstractFunctionTemplate
implementation for executing
a Function
on a target Region
.Region
,
Execution
,
Function
,
AbstractFunctionTemplate
,
GemfireOnRegionOperations
Constructor and Description |
---|
GemfireOnRegionFunctionTemplate(org.apache.geode.cache.Region<?,?> region)
Constructs a new instance of the
GemfireOnRegionFunctionTemplate initialized with
the given Region . |
Modifier and Type | Method and Description |
---|---|
void |
afterPropertiesSet() |
protected <T> Iterable<T> |
execute(org.springframework.data.gemfire.function.execution.AbstractFunctionExecution functionExecution) |
protected <T> Iterable<T> |
execute(org.springframework.data.gemfire.function.execution.AbstractFunctionExecution functionExecution,
boolean returnResult) |
<T> Iterable<T> |
execute(org.apache.geode.cache.execute.Function function,
Object... args)
Execute an unregistered GemFire Function with the given arguments.
|
<T> T |
execute(GemfireFunctionCallback<T> callback)
Execute a GemFire Function using a native GemFire
Execution instance. |
<T> Iterable<T> |
execute(String functionId,
Object... args)
Execute a GemFire Function registered with the given ID.
|
<T> Iterable<T> |
execute(String functionId,
Set<?> keys,
Object... args) |
protected <T> T |
executeAndExtract(org.springframework.data.gemfire.function.execution.AbstractFunctionExecution functionExecution) |
<T> T |
executeAndExtract(org.apache.geode.cache.execute.Function function,
Object... args)
Execute an unregistered GemFire Function with the expected singleton result.
|
<T> T |
executeAndExtract(String functionId,
Object... args)
Execute a GemFire Function registered with an ID and with an expected singleton result
|
<T> T |
executeAndExtract(String functionId,
Set<?> keys,
Object... args) |
void |
executeWithNoResult(String functionId,
Object... args)
Execute a GemFire Function registered with the given ID having no return value.
|
void |
executeWithNoResult(String functionId,
Set<?> keys,
Object... args) |
protected org.springframework.data.gemfire.function.execution.OnRegionFunctionExecution |
getFunctionExecution() |
protected org.apache.geode.cache.Region<?,?> |
getRegion() |
org.apache.geode.cache.execute.ResultCollector<?,?> |
getResultCollector() |
long |
getTimeout() |
void |
setResultCollector(org.apache.geode.cache.execute.ResultCollector<?,?> resultCollector) |
void |
setTimeout(long timeout) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
execute, executeAndExtract, executeWithNoResult
execute, execute, execute, executeAndExtract, executeAndExtract, executeWithNoResult
public GemfireOnRegionFunctionTemplate(org.apache.geode.cache.Region<?,?> region)
GemfireOnRegionFunctionTemplate
initialized with
the given Region
.region
- Region
on which the Function
will be executed.IllegalArgumentException
- if Region
is null.Region
protected org.springframework.data.gemfire.function.execution.OnRegionFunctionExecution getFunctionExecution()
protected org.apache.geode.cache.Region<?,?> getRegion()
public <T> Iterable<T> execute(String functionId, Set<?> keys, Object... args)
execute
in interface GemfireOnRegionOperations
public <T> T executeAndExtract(String functionId, Set<?> keys, Object... args)
executeAndExtract
in interface GemfireOnRegionOperations
public void executeWithNoResult(String functionId, Set<?> keys, Object... args)
executeWithNoResult
in interface GemfireOnRegionOperations
public void afterPropertiesSet() throws Exception
afterPropertiesSet
in interface InitializingBean
Exception
public <T> Iterable<T> execute(org.apache.geode.cache.execute.Function function, Object... args)
GemfireFunctionOperations
execute
in interface GemfireFunctionOperations
T
- type parameter specifying the result type of the Function execution.function
- the GemFire Function object to execute.args
- an array of Object arguments to the Function call.public <T> T executeAndExtract(org.apache.geode.cache.execute.Function function, Object... args)
GemfireFunctionOperations
executeAndExtract
in interface GemfireFunctionOperations
T
- type parameter specifying the result type of the Function execution.function
- the GemFire Function object.args
- an array of Object arguments to the Function call.Function
public <T> Iterable<T> execute(String functionId, Object... args)
GemfireFunctionOperations
execute
in interface GemfireFunctionOperations
T
- type parameter specifying the result type of the Function execution.functionId
- the ID under which the GemFire function is registered.args
- an array of Object arguments to the Function call.public <T> T executeAndExtract(String functionId, Object... args)
GemfireFunctionOperations
executeAndExtract
in interface GemfireFunctionOperations
T
- type parameter specifying the result type of the Function execution.functionId
- the ID under which the GemFire function is registered.args
- an array of Object arguments to the Function call.public void executeWithNoResult(String functionId, Object... args)
GemfireFunctionOperations
executeWithNoResult
in interface GemfireFunctionOperations
functionId
- the ID under which the GemFire function is registered.args
- an array of Object arguments to the Function call.public <T> T execute(GemfireFunctionCallback<T> callback)
GemfireFunctionOperations
Execution
instance.execute
in interface GemfireFunctionOperations
T
- type parameter specifying the result type of the Function execution.callback
- a callback providing the execution instance.GemfireFunctionCallback
protected <T> Iterable<T> execute(org.springframework.data.gemfire.function.execution.AbstractFunctionExecution functionExecution)
protected <T> Iterable<T> execute(org.springframework.data.gemfire.function.execution.AbstractFunctionExecution functionExecution, boolean returnResult)
protected <T> T executeAndExtract(org.springframework.data.gemfire.function.execution.AbstractFunctionExecution functionExecution)
public void setResultCollector(org.apache.geode.cache.execute.ResultCollector<?,?> resultCollector)
public org.apache.geode.cache.execute.ResultCollector<?,?> getResultCollector()
public void setTimeout(long timeout)
public long getTimeout()
Copyright © 2011–2021 Pivotal Software, Inc.. All rights reserved.