public interface GemfireFunctionOperations
Modifier and Type | Method and Description |
---|---|
<T> Iterable<T> |
execute(org.apache.geode.cache.execute.Function function,
Object... args)
Execute an unregistered Pivotal GemFire Function with the given arguments.
|
<T> T |
execute(GemfireFunctionCallback<T> callback)
Execute a Pivotal GemFire Function using a native Pivotal GemFire
Execution instance. |
<T> Iterable<T> |
execute(String functionId,
Object... args)
Execute a Pivotal GemFire Function registered with the given ID.
|
<T> T |
executeAndExtract(org.apache.geode.cache.execute.Function function,
Object... args)
Execute an unregistered Pivotal GemFire Function with the expected singleton result.
|
<T> T |
executeAndExtract(String functionId,
Object... args)
Execute a Pivotal GemFire Function registered with an ID and with an expected singleton result
|
void |
executeWithNoResult(String functionId,
Object... args)
Execute a Pivotal GemFire Function registered with the given ID having no return value.
|
<T> Iterable<T> execute(org.apache.geode.cache.execute.Function function, Object... args)
T
- type parameter specifying the result type of the Function execution.function
- the Pivotal GemFire Function object to execute.args
- an array of Object arguments to the Function call.<T> Iterable<T> execute(String functionId, Object... args)
T
- type parameter specifying the result type of the Function execution.functionId
- the ID under which the Pivotal GemFire function is registered.args
- an array of Object arguments to the Function call.<T> T executeAndExtract(org.apache.geode.cache.execute.Function function, Object... args)
T
- type parameter specifying the result type of the Function execution.function
- the Pivotal GemFire Function object.args
- an array of Object arguments to the Function call.Function
<T> T executeAndExtract(String functionId, Object... args)
T
- type parameter specifying the result type of the Function execution.functionId
- the ID under which the Pivotal GemFire function is registered.args
- an array of Object arguments to the Function call.void executeWithNoResult(String functionId, Object... args)
functionId
- the ID under which the Pivotal GemFire function is registered.args
- an array of Object arguments to the Function call.<T> T execute(GemfireFunctionCallback<T> callback)
Execution
instance.T
- type parameter specifying the result type of the Function execution.callback
- a callback providing the execution instance.GemfireFunctionCallback
Copyright © 2011–2021 Pivotal Software, Inc.. All rights reserved.