|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AgentStatus>
flux.agent.AgentStatus
public enum AgentStatus
Indicates the status of a Flux agent. An agent can be busy, free, or stopped.
Enum Constant Summary | |
---|---|
BUSY
Indicates that a Flux agent is registered with a master Flux engine, is currently executing processes, and cannot be assigned any other processes to execute. |
|
FREE
Indicates that a Flux agent is registered with a master Flux engine and is free to be assigned a process to execute. |
|
STOPPED
Indicates that a Flux agent is registered with a master Flux engine, is not busy, and is not accepting processes to execute. |
|
UNREACHABLE
Indicates that a master Flux engine cannot contact a previously registered Flux agent. |
|
UNREGISTERED
Indicates that a Flux agent is not registered with a master Flux engine. |
Method Summary | |
---|---|
static AgentStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static AgentStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final AgentStatus BUSY
public static final AgentStatus FREE
public static final AgentStatus STOPPED
public static final AgentStatus UNREACHABLE
public static final AgentStatus UNREGISTERED
Method Detail |
---|
public static AgentStatus[] values()
for (AgentStatus c : AgentStatus.values()) System.out.println(c);
public static AgentStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |