public enum SessionReplyStatus extends java.lang.Enum<SessionReplyStatus>
| Enum Constant and Description |
|---|
INVALID_CONFIGURATION_NOT_LOGGING_MESSAGES
You've requested replay of messages, but EngineConfiguration has disabled required logging of messsages
|
MISSING_MESSAGES
We can't find the required number of messages in the log
|
NULL_VAL
To be used to represent not present or null.
|
OK
Operation Succeeded
|
OTHER_SESSION_OWNER
Another library owns that session
|
SEQUENCE_NUMBER_TOO_HIGH
Can't replay to that sequence number: haven't archived it yet
|
SESSION_NOT_LOGGED_IN
The session hasn't logged in yet so you can't replay anything
|
UNKNOWN_LIBRARY
The gateway doesn't know about your library
|
UNKNOWN_SESSION
The gateway doesn't know about the specified connection id
|
| Modifier and Type | Method and Description |
|---|---|
static SessionReplyStatus |
get(short value)
Lookup the enum value representing the value.
|
short |
value()
The raw encoded value in the Java type representation.
|
static SessionReplyStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SessionReplyStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SessionReplyStatus OK
public static final SessionReplyStatus UNKNOWN_SESSION
public static final SessionReplyStatus UNKNOWN_LIBRARY
public static final SessionReplyStatus OTHER_SESSION_OWNER
public static final SessionReplyStatus SESSION_NOT_LOGGED_IN
public static final SessionReplyStatus SEQUENCE_NUMBER_TOO_HIGH
public static final SessionReplyStatus MISSING_MESSAGES
public static final SessionReplyStatus INVALID_CONFIGURATION_NOT_LOGGING_MESSAGES
public static final SessionReplyStatus NULL_VAL
public static SessionReplyStatus[] values()
for (SessionReplyStatus c : SessionReplyStatus.values()) System.out.println(c);
public static SessionReplyStatus 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 nullpublic short value()
public static SessionReplyStatus get(short value)
value - encoded to be looked up.Copyright © 2015-2022 Real Logic Limited. All Rights Reserved.