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 |
---|---|
static Execution |
FunctionService.onMember(DistributedMember distributedMember)
Returns an
Execution object that can be used to execute a data
independent function on a DistributedMember . |
static Execution |
FunctionService.onMember(DistributedSystem system,
DistributedMember distributedMember)
Deprecated.
use
FunctionService.onMember(DistributedMember) instead |
static Execution |
FunctionService.onMember(String... groups)
Returns an
Execution object that can be used to execute a data
independent function on one member of each group provided. |
static Execution |
FunctionService.onMembers(DistributedSystem system)
Deprecated.
use
FunctionService.onMember(String...) instead |
static Execution |
FunctionService.onMembers(DistributedSystem system,
Set<DistributedMember> distributedMembers)
Deprecated.
use
FunctionService.onMembers(Set) instead |
static Execution |
FunctionService.onMembers(Set<DistributedMember> distributedMembers)
Returns an
Execution object that can be used to execute a data
independent function on the set of DistributedMember s. |
static Execution |
FunctionService.onMembers(String... groups)
Returns an
Execution object that can be used to execute a data
independent function on all peer members. |
static Execution |
FunctionService.onRegion(Region region)
Returns an
Execution object that can be used to execute a data
dependent function on the specified Region. |
static Execution |
FunctionService.onServer(Pool pool)
|
static Execution |
FunctionService.onServer(RegionService regionService)
Returns an
Execution object that can be used to execute a data
independent function on a server that the given cache is connected to. |
static Execution |
FunctionService.onServers(Pool pool)
|
static Execution |
FunctionService.onServers(RegionService regionService)
Returns an
Execution object that can be used to execute a data
independent function on all the servers that the given cache is connected to. |
Execution |
Execution.withArgs(Object args)
Specifies the user data passed to the function when it is executed.
|
Execution |
Execution.withCollector(ResultCollector<?,?> rc)
Specifies the
ResultCollector that will receive the results after
the function has been executed. |
Execution |
Execution.withFilter(Set<?> filter)
Specifies a data filter of routing objects for selecting the GemFire
members to execute the function on.
|
Copyright © 1997-2017 Pivotal Software, Inc. All rights reserved.