public static enum RpcOutput.Status extends Enum<RpcOutput.Status>
| Enum Constant and Description |
|---|
RPC_FAILURE
RPC execution failed.
|
RPC_NODATA
RPC execution don't have any output data.
|
RPC_SUCCESS
RPC execution was successful.
|
RPC_TIMEOUT
Failed to receive a response from the receiver, within the broker specified timeout.
|
| Modifier and Type | Method and Description |
|---|---|
static RpcOutput.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RpcOutput.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RpcOutput.Status RPC_SUCCESS
public static final RpcOutput.Status RPC_FAILURE
public static final RpcOutput.Status RPC_NODATA
public static final RpcOutput.Status RPC_TIMEOUT
public static RpcOutput.Status[] values()
for (RpcOutput.Status c : RpcOutput.Status.values()) System.out.println(c);
public static RpcOutput.Status 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 © 2018. All rights reserved.