Package | Description |
---|---|
com.gemstone.gemfire.cache.execute |
The
com.gemstone.gemfire.cache.execute package provides APIs used
for function execution on gemfire system members. |
Modifier and Type | Method and Description |
---|---|
ResultCollector<?,?> |
Execution.execute(Function function)
Executes the function instance provided.
|
ResultCollector<?,?> |
Execution.execute(String functionId)
Executes the function using its id
Function.execute(FunctionContext) is called on the instance
retrieved using FunctionService.getFunction(String) on the
executing member. |
ResultCollector<?,?> |
Execution.execute(String functionId,
boolean hasResult)
Deprecated.
as of 6.6, use
Execution.execute(String) instead |
ResultCollector<?,?> |
Execution.execute(String functionId,
boolean hasResult,
boolean isHA)
Deprecated.
as of 6.6, use
Execution.execute(String) instead |
ResultCollector<?,?> |
Execution.execute(String functionId,
boolean hasResult,
boolean isHA,
boolean optimizeForWrite)
Deprecated.
as of 6.6, use
Execution.execute(String) instead |
Modifier and Type | Method and Description |
---|---|
Execution |
Execution.withCollector(ResultCollector<?,?> rc)
Specifies the
ResultCollector that will receive the results after
the function has been executed. |
Copyright © 1997-2017 Pivotal Software, Inc. All rights reserved.