public static enum ERequestFeed.RequestState extends Enum<ERequestFeed.RequestState>
| Enum Constant and Description |
|---|
ACTIVE
Request message sent to repliers and is waiting for
reply messages.
|
CANCELED
The request was canceled by client and will no
longer respond to replies.
|
DONE
The request is no longer active because all replies
are received.
|
NOT_PLACED
Request instantiated but not yet placed.
|
| Modifier and Type | Method and Description |
|---|---|
static ERequestFeed.RequestState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ERequestFeed.RequestState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ERequestFeed.RequestState NOT_PLACED
public static final ERequestFeed.RequestState ACTIVE
DONE state.
Goes to the CANCELED state if the
requestor calls
EFeed.close().public static final ERequestFeed.RequestState DONE
public static final ERequestFeed.RequestState CANCELED
public static ERequestFeed.RequestState[] values()
for (ERequestFeed.RequestState c : ERequestFeed.RequestState.values()) System.out.println(c);
public static ERequestFeed.RequestState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019. All rights reserved.