|
GridGain 2.0.3
Java API Specification |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<GridEventType>
org.gridgain.grid.GridEventType
@Apache20LicenseCompatible public enum GridEventType
Types of grid events. Note that these events are stored locally when generated by actions on the local node and can be queried using:
Grid.queryEvents(GridEventFilter, Collection, long) - querying
events occurred on the nodes specified, including remote nodes (note
that GridEventFilter must implement Serializable.
Grid.queryLocalEvents(GridEventFilter) - querying only local
events stored on this local node.
Grid.addLocalEventListener(GridLocalEventListener) - listening
to local grid events (events from remote nodes not included).
Documentation
Email Support
Online Forums
Issue Tracking
Author: 2005-2008 Copyright © GridGain Systems. All Rights Reserved. ver. 2.0.3

| Enum Constant Summary | |
|---|---|
CHECKPOINT_LOADED
Checkpoint was loaded. |
|
CHECKPOINT_REMOVED
Checkpoint was removed (either timeout expired, or manually removed, or automatically removed by task session). |
|
CHECKPOINT_SAVED
Checkpoint was saved. |
|
JOB_CANCELLED
Job got cancelled. |
|
JOB_FAILED
Job has failed. |
|
JOB_FAILED_OVER
Job got failed over. |
|
JOB_FINISHED
Job has successfully completed and produced a result which from the user perspective can still be either negative or positive. |
|
JOB_MAPPED
Grid job was mapped in GridTask.map(List, Object) method. |
|
JOB_QUEUED
Job arrived for execution and has been queued (added to passive queue during collision resolution). |
|
JOB_REJECTED
Job has been rejected. |
|
JOB_RESULTED
Grid job result was received by GridTask.result(GridJobResult, List) method. |
|
JOB_STARTED
Job got started. |
|
JOB_TIMED_OUT
Job timed out. |
|
NODE_FAILED
Node failed and left topology unexpectedly. |
|
NODE_JOINED
Node joined topology. |
|
NODE_LEFT
Node left topology. |
|
SESSION_ATTR_SET
Session attribute(s) got set. |
|
TASK_DEPLOYED
Task deployed event. |
|
TASK_FAILED
Task failed. |
|
TASK_FINISHED
Task got finished. |
|
TASK_REDUCED
All split jobs' results were reduced for the task in GridTask.reduce(List) method. |
|
TASK_STARTED
Task got started. |
|
TASK_TIMED_OUT
Task timed out. |
|
TASK_UNDEPLOYED
Task undeployed event. |
|
| Method Summary | |
|---|---|
static GridEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static GridEventType[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final GridEventType NODE_JOINED
public static final GridEventType NODE_LEFT
public static final GridEventType NODE_FAILED
public static final GridEventType CHECKPOINT_SAVED
public static final GridEventType CHECKPOINT_LOADED
public static final GridEventType CHECKPOINT_REMOVED
public static final GridEventType TASK_STARTED
public static final GridEventType TASK_FINISHED
GridEventType.TASK_FAILEDpublic static final GridEventType TASK_FAILED
GridEventType.TASK_FINISHEDpublic static final GridEventType TASK_DEPLOYED
public static final GridEventType TASK_UNDEPLOYED
public static final GridEventType JOB_MAPPED
GridTask.map(List, Object) method.
public static final GridEventType JOB_RESULTED
GridTask.result(GridJobResult, List) method.
public static final GridEventType TASK_REDUCED
GridTask.reduce(List) method.
public static final GridEventType JOB_FAILED_OVER
public static final GridEventType JOB_STARTED
public static final GridEventType JOB_FINISHED
public static final GridEventType JOB_TIMED_OUT
public static final GridEventType JOB_REJECTED
public static final GridEventType TASK_TIMED_OUT
public static final GridEventType JOB_FAILED
public static final GridEventType JOB_QUEUED
public static final GridEventType JOB_CANCELLED
public static final GridEventType SESSION_ATTR_SET
| Method Detail |
|---|
public static final GridEventType[] values()
for(GridEventType c : GridEventType.values())
System.out.println(c);
public static GridEventType valueOf(String name)
IllegalArgumentException - if this enum type has no constant
with the specified namename - the name of the enum constant to be returned.
|
GridGain 2.0.3
Java API Specification |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
|
GridGain - Grid Computing Made Simple, ver. 2.0.3.20052008
2005-2008 Copyright © GridGain Systems. All Rights Reserved. |
|