|
Errai 3.0.1-SNAPSHOT | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ClusterCommands>
org.jboss.errai.bus.server.cluster.ClusterCommands
public enum ClusterCommands
Enum Constant Summary | |
---|---|
InvalidRoute
The InvalidRoute verb is used in a point-to-point message to indicate that the bus was forwarded a message which it is not or no longer responsible for. |
|
MessageForward
The MessageForward verb is used in a point-to-point or global message which encapsulates a message payload to be forwarded to specific or all buses. |
|
NotifyOwner
The NotifyOwner verb is sent in response to a WhoHandles broadcast on a point-to-point basis, directly back to the sender of the WhoHandles to notify that the bus is responsible for handling the request session. |
|
WhoHandles
The WhoHandles verb is a broadcast message to the cluster that asks all buses who is responsible for handling the specified session. |
Method Summary | |
---|---|
static ClusterCommands |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ClusterCommands[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, 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 ClusterCommands WhoHandles
public static final ClusterCommands NotifyOwner
public static final ClusterCommands MessageForward
public static final ClusterCommands InvalidRoute
Method Detail |
---|
public static ClusterCommands[] values()
for (ClusterCommands c : ClusterCommands.values()) System.out.println(c);
public static ClusterCommands valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
Errai 3.0.1-SNAPSHOT | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |