public enum AgentStatus extends java.lang.Enum<AgentStatus>
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
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
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 namejava.lang.NullPointerException
- if the argument is null© 2000-2025 Flux Corporation. All rights reserved.