nn::rdt::CTR::SenderState Enumerated Type

Syntax

enum SenderState;

Value

Value Description
SENDER_STATE_OPEN_REQUESTED The state immediately after Sender::Open has been called.
SENDER_STATE_OPENING State in which a connection request has been issued to the other party and the local host is waiting for a response.
SENDER_STATE_OPENED State in which a connection with the other party has been established and the local host can send data.
SENDER_STATE_CLOSE_REQUESTED The state immediately after Sender::Close has been called.
SENDER_STATE_CLOSING The state after all data has been transmitted as planned and a completion notification has been sent to the other party. Data transmission does not complete until a response is received from the other party and there is a transition to SENDER_STATE_CLOSED.
SENDER_STATE_CLOSED Initial state of instances. Although in a state where the data send has completed, there is no guarantee that Receiver has received the data.
SENDER_STATE_NOT_INITIALIZED Indicates that a sender instance has not been initialized.

Description

Enumerated type that indicates the state of a Sender instance.

Revision History

2010/06/14
Initial version.

CONFIDENTIAL