public class GridTaskEvent extends GridEventAdapter
Grid events are used for notification about what happens within the grid. Note that by design GridGain keeps all events generated on the local node locally and it provides APIs for performing a distributed queries across multiple nodes:
GridEvents.remoteQuery(GridPredicate, long, int...) -
asynchronously querying events occurred on the nodes specified, including remote nodes.
GridEvents.localQuery(GridPredicate, int...) -
querying only local events stored on this local node.
GridEvents.localListen(GridPredicate, int...) -
listening to local grid events (events from remote nodes not included).
GridEvents.waitForLocal(GridPredicate, int...).
It is highly recommended to enable only those events that your application logic requires
by using GridConfiguration.getIncludeEventTypes() method in GridGain configuration. Note that certain
events are required for GridGain's internal operations and such events will still be generated but not stored by
event storage SPI if they are disabled in GridGain configuration.
| Constructor and Description |
|---|
GridTaskEvent(GridNode node,
String msg,
int type,
GridUuid sesId,
String taskName,
String taskClsName,
boolean internal,
UUID subjId)
Creates task event with given parameters.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
internal()
Returns
true if task is created by GridGain and is used for system needs. |
String |
shortDisplay()
Gets a shortened version of
toString() result. |
UUID |
subjectId()
Gets security subject ID initiated this task event, if available.
|
String |
taskClassName()
Gets name of task class that triggered this event.
|
String |
taskName()
Gets name of the task that triggered the event.
|
GridUuid |
taskSessionId()
Gets session ID of the task that triggered the event.
|
String |
toString() |
public GridTaskEvent(GridNode node, String msg, int type, GridUuid sesId, String taskName, String taskClsName, boolean internal, @Nullable UUID subjId)
node - Node.msg - Optional message.type - Event type.sesId - Task session ID.taskName - Task name.subjId - Subject ID.public String shortDisplay()
toString() result. Suitable for humans to read.shortDisplay in interface GridEventshortDisplay in class GridEventAdaptertoString() result.public String taskName()
public String taskClassName()
public GridUuid taskSessionId()
public boolean internal()
true if task is created by GridGain and is used for system needs.True if task is created by GridGain and is used for system needs.@Nullable public UUID subjectId()
Subject ID will be set either to node ID or client ID initiated task execution.
public String toString()
toString in class GridEventAdapterCopyright © 2014. All rights reserved.