Enum Class AMCommand
- All Implemented Interfaces:
Serializable,Comparable<AMCommand>,Constable
Command sent by the Resource Manager to the Application Master in the
AllocateResponse
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDeprecated.Sent by Resource Manager when it is out of sync with the AM and wants the AM get back in sync.Deprecated.Sent by Resource Manager when it wants the AM to shutdown. -
Method Summary
-
Enum Constant Details
-
AM_RESYNC
Deprecated.Sent by Resource Manager when it is out of sync with the AM and wants the AM get back in sync. Note: Instead of sending this command,ApplicationMasterNotRegisteredExceptionwill be thrown when ApplicationMaster is out of sync with ResourceManager and ApplicationMaster is expected to re-register with RM by callingApplicationMasterProtocol.registerApplicationMaster(RegisterApplicationMasterRequest) -
AM_SHUTDOWN
Deprecated.Sent by Resource Manager when it wants the AM to shutdown. Note: This command was earlier sent by ResourceManager to instruct AM to shutdown if RM had restarted. NowApplicationAttemptNotFoundExceptionwill be thrown in case that RM has restarted and AM is supposed to handle this exception by shutting down itself.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-