public static enum FixPConnection.State extends java.lang.Enum<FixPConnection.State>
FixPConnection.state() method.| Enum Constant and Description |
|---|
ACCEPTED
Acceptor TCP connection has been established, but the negotiate not received.
|
AWAITING_KEEPALIVE
keepAliveInterval has expired without receiving a message from the counter-party - we are waiting that long
again before terminating.
|
CONNECTED
Initiator TCP connection has been established, but the negotiate not sent.
|
ESTABLISH_REJECTED
Received an Establish Reject message.
|
ESTABLISHED
Establish accepted, messages can be exchanged
|
NEGOTIATE_REJECTED
Initiator has received a Negotiate Reject message.
|
NEGOTIATED
Initiator has had a Negotiate accepted, Establish not sent
|
NEGOTIATED_REESTABLISH
Acceptor state, counter-party re-established previous connection with an establish message
|
RECV_FINISHED_RECEIVING_ONLY
We've received a finished receiving from a counter-party in response to our finished sending but
haven't been sent a finished sending.
|
RECV_FINISHED_SENDING
We've received a finished sending message and sent a reply
|
REPLIED_FINISHED_SENDING
We've sent our own finished sending message, having received a finished sending message
|
RESEND_TERMINATE
An initiating Terminate message hasn't been sent due to back-pressure in Artio, retrying attempt to send.
|
RESEND_TERMINATE_ACK
An acknowledging Terminate message hasn't been sent due to back-pressure in Artio, retrying attempt to send.
|
RETRANSMITTING
An idempotent flow session is currently retransmitting messages in response to a NotApplied message.
|
RETRY_ESTABLISH
Negotiate accepted, The Establish message hasn't been sent due to back-pressure in Artio,
retrying attempt to send.
|
RETRY_ESTABLISH_ACK
Acceptor has not sent the Establish ack message due to back-pressure, retrying attempt to send.
|
RETRY_ESTABLISH_REJECT
Acceptor has not sent the Establish reject message due to back-pressure, retrying attempt to send.
|
RETRY_FINISHED_SENDING
We've attempted to send a finished sending message but been back-pressured
|
RETRY_NEGOTIATE
Initiator has not sent the Negotiate message due to back-pressure in Artio, retrying attempt to send.
|
RETRY_NEGOTIATE_REJECT
Acceptor has not sent the Negotiate reject message due to back-pressure, retrying attempt to send.
|
RETRY_NEGOTIATE_RESPONSE
Acceptor has not sent the Negotiate response message due to back-pressure, retrying attempt to send.
|
RETRY_REPLY_FINISHED_SENDING
We're trying to resend our own finished sending message, having received a finished sending message
|
SENT_ESTABLISH
Initiator has had a Negotiate accepted, Establish sent
|
SENT_ESTABLISH_REJECT
Acceptor has received an establish message and rejected it.
|
SENT_FINISHED_SENDING
We've sent a finished sending message but not received a finished receiving
|
SENT_NEGOTIATE
Initiator has sent the Negotiate message sent but no reply received yet.
|
SENT_NEGOTIATE_REJECT
Acceptor has received a negotiate message and rejected it.
|
SENT_NEGOTIATE_RESPONSE
Acceptor has received a negotiate message and responded to it.
|
SENT_TERMINATE
This session has sent a Terminate message in order to initiate a terminate, but has not received a reply
yet.
|
UNBINDING
We are awaiting a reply to a Terminate message.
|
UNBOUND
The session has been disconnected at the TCP level.
|
| Modifier and Type | Method and Description |
|---|---|
static FixPConnection.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FixPConnection.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FixPConnection.State CONNECTED
public static final FixPConnection.State SENT_NEGOTIATE
public static final FixPConnection.State RETRY_NEGOTIATE
public static final FixPConnection.State NEGOTIATE_REJECTED
public static final FixPConnection.State NEGOTIATED
public static final FixPConnection.State SENT_ESTABLISH
public static final FixPConnection.State RETRY_ESTABLISH
public static final FixPConnection.State ESTABLISH_REJECTED
public static final FixPConnection.State ACCEPTED
public static final FixPConnection.State SENT_NEGOTIATE_RESPONSE
public static final FixPConnection.State RETRY_NEGOTIATE_RESPONSE
public static final FixPConnection.State SENT_NEGOTIATE_REJECT
public static final FixPConnection.State RETRY_NEGOTIATE_REJECT
public static final FixPConnection.State RETRY_ESTABLISH_ACK
public static final FixPConnection.State SENT_ESTABLISH_REJECT
public static final FixPConnection.State RETRY_ESTABLISH_REJECT
public static final FixPConnection.State NEGOTIATED_REESTABLISH
public static final FixPConnection.State ESTABLISHED
public static final FixPConnection.State RETRANSMITTING
public static final FixPConnection.State SENT_FINISHED_SENDING
public static final FixPConnection.State RETRY_FINISHED_SENDING
public static final FixPConnection.State RECV_FINISHED_RECEIVING_ONLY
public static final FixPConnection.State RECV_FINISHED_SENDING
public static final FixPConnection.State REPLIED_FINISHED_SENDING
public static final FixPConnection.State RETRY_REPLY_FINISHED_SENDING
public static final FixPConnection.State AWAITING_KEEPALIVE
public static final FixPConnection.State RESEND_TERMINATE
public static final FixPConnection.State RESEND_TERMINATE_ACK
public static final FixPConnection.State UNBINDING
public static final FixPConnection.State SENT_TERMINATE
public static final FixPConnection.State UNBOUND
public static FixPConnection.State[] values()
for (FixPConnection.State c : FixPConnection.State.values()) System.out.println(c);
public static FixPConnection.State 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 nullCopyright © 2015-2022 Real Logic Limited. All Rights Reserved.