|
GemFire 7.0 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.gemstone.gemfire.cache.execute.FunctionService
public final class FunctionService
Provides the entry point into execution of user defined Functions.
Function execution provides a means to route application behaviour to data or more
generically to peers in a DistributedSystem or servers in a Pool.
| Method Summary | |
|---|---|
static Function |
getFunction(String functionId)
Returns the Function defined by the functionId, returns null if no
function is found for the specified functionId |
static Map<String,Function> |
getRegisteredFunctions()
Returns all locally registered functions |
static boolean |
isRegistered(String functionId)
Returns true if the function is registered to FunctionService |
static Execution |
onMember(DistributedMember distributedMember)
Returns an Execution object that can be used to execute a data
independent function on a DistributedMember. |
static Execution |
onMember(DistributedSystem system,
DistributedMember distributedMember)
Deprecated. use onMember(DistributedMember) instead |
static Execution |
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 |
onMembers(DistributedSystem system)
Deprecated. use onMember(String...) instead |
static Execution |
onMembers(DistributedSystem system,
Set<DistributedMember> distributedMembers)
Deprecated. use onMembers(Set) instead |
static Execution |
onMembers(Set<DistributedMember> distributedMembers)
Returns an Execution object that can be used to execute a data
independent function on the set of DistributedMembers. |
static Execution |
onMembers(String... groups)
Returns an Execution object that can be used to execute a data
independent function on all peer members. |
static Execution |
onRegion(Region region)
Returns an Execution object that can be used to execute a data
dependent function on the specified Region. |
static Execution |
onServer(Pool pool)
Returns an Execution object that can be used to execute a data
independent function on a server in the provided Pool. |
static Execution |
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 |
onServers(Pool pool)
Returns an Execution object that can be used to execute a data
independent function on all the servers in the provided Pool. |
static Execution |
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. |
static void |
registerFunction(Function function)
Registers the given Function with the FunctionService using
Function.getId(). |
static void |
unregisterFunction(String functionId)
Unregisters the given Function with the FunctionService
using Function.getId(). |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
|---|
public static Execution onRegion(Region region)
Execution object that can be used to execute a data
dependent function on the specified Region.Pool for the region. Execution, the function is
executed on all GemFire members that define the data region, or a subset of
members. Execution.withFilter(Set)).
For DistributedRegions with DataPolicy.NORMAL, it throws
UnsupportedOperationException. For DistributedRegions with
DataPolicy.EMPTY, execute the function on any random member which has
DataPolicy.REPLICATE
region -
FunctionException - if the region passed in is nullpublic static Execution onServer(Pool pool)
Execution object that can be used to execute a data
independent function on a server in the provided Pool.
If the server goes down while dispatching or executing the function, an Exception will be thrown.
pool - from which to chose a server for execution
FunctionException - if Pool instance passed in is nullpublic static Execution onServers(Pool pool)
Execution object that can be used to execute a data
independent function on all the servers in the provided Pool. If
one of the servers goes down while dispatching or executing the function on
the server, an Exception will be thrown.
pool - the set of servers to execute the function
FunctionException - if Pool instance passed in is nullpublic static Execution onServer(RegionService regionService)
Execution object that can be used to execute a data
independent function on a server that the given cache is connected to.
If the server goes down while dispatching or executing the function, an Exception will be thrown.
regionService - obtained from ClientCacheFactory.create()
or ClientCache.createAuthenticatedView(Properties).
FunctionException - if cache is null, is not on a client, or it does not have a default poolpublic static Execution onServers(RegionService regionService)
Execution object that can be used to execute a data
independent function on all the servers that the given cache is connected to. If
one of the servers goes down while dispatching or executing the function on
the server, an Exception will be thrown.
regionService - obtained from ClientCacheFactory.create()
or ClientCache.createAuthenticatedView(Properties).
FunctionException - if cache is null, is not on a client, or it does not have a default pool
public static Execution onMember(DistributedSystem system,
DistributedMember distributedMember)
onMember(DistributedMember) instead
Execution object that can be used to execute a data
independent function on a DistributedMember of the
DistributedSystem. If the member is not found in the system, the
function execution will throw an Exception. If the member goes down while
dispatching or executing the function on the member, an Exception will be
thrown.
system - defines the distributed systemdistributedMember - defines a member in the distributed system
FunctionException - if either input parameter is nullpublic static Execution onMembers(DistributedSystem system)
onMember(String...) instead
Execution object that can be used to execute a data
independent function on all members of the DistributedSystem. If
one of the members goes down while dispatching or executing the function on
the member, an Exception will be thrown.
system - defines the distributed system
FunctionException - if DistributedSystem instance passed is null
public static Execution onMembers(DistributedSystem system,
Set<DistributedMember> distributedMembers)
onMembers(Set) instead
Execution object that can be used to execute a data
independent function on the set of DistributedMembers of the
DistributedSystem. If one of the members goes down while
dispatching or executing the function, an Exception will be thrown.
system - defines the distributed systemdistributedMembers - set of distributed members on which Function to be
executed
FunctionException - if DistributedSystem instance passed is nullpublic static Execution onMember(DistributedMember distributedMember)
Execution object that can be used to execute a data
independent function on a DistributedMember. If the member is not
found, executing the function will throw an Exception. If the member goes
down while dispatching or executing the function on the member, an
Exception will be thrown.
distributedMember - defines a member in the distributed system
FunctionException - if distributedMember is nullpublic static Execution onMembers(String... groups)
Execution object that can be used to execute a data
independent function on all peer members. If the optional groups parameter
is provided, function is executed on all members that belong to the
provided groups.
If one of the members goes down while dispatching or executing the function on the member, an Exception will be thrown.
groups - optional list of GemFire configuration property "groups" (see
groups) on which to execute the function.
Function will be executed on all members of each group
FunctionException - if no members are found belonging to the provided groupspublic static Execution onMembers(Set<DistributedMember> distributedMembers)
Execution object that can be used to execute a data
independent function on the set of DistributedMembers. If one of
the members goes down while dispatching or executing the function, an
Exception will be thrown.
distributedMembers - set of distributed members on which Function to be
executed
FunctionException - if distributedMembers is nullpublic static Execution onMember(String... groups)
Execution object that can be used to execute a data
independent function on one member of each group provided.
groups - list of GemFire configuration property "groups" (see
groups) on which to execute the function.
Function will be executed on one member of each group
FunctionException - if no members are found belonging to the provided groupspublic static Function getFunction(String functionId)
Function defined by the functionId, returns null if no
function is found for the specified functionId
functionId -
FunctionException - if functionID passed is nullpublic static void registerFunction(Function function)
Function with the FunctionService using
Function.getId().
Registering a function allows execution of the function using
Execution.execute(String). Every member that could execute a
function using its Function.getId() should register the function.
FunctionException - if function instance passed is null or Function.getId()
returns nullpublic static void unregisterFunction(String functionId)
Function with the FunctionService
using Function.getId().
FunctionException - if function instance passed is null or Function.getId()
returns nullpublic static boolean isRegistered(String functionId)
FunctionException - if function instance passed is null or Function.getId()
returns nullpublic static Map<String,Function> getRegisteredFunctions()
Function.getId() to Function
|
GemFire 7.0 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||