#include <Token_Request_Reply.h>
Collaboration diagram for ACE_Token_Reply:
Public Member Functions | |
ACE_Token_Reply (void) | |
Default constructor. | |
ACE_UINT32 | length (void) const |
Get the length of the encoded/decoded message. | |
void | length (ACE_UINT32) |
Set the length of the encoded/decoded message. | |
ACE_UINT32 | errnum (void) const |
Get the errno of a reply. | |
void | errnum (ACE_UINT32) |
Set the errno of a reply. | |
ACE_UINT32 | arg (void) const |
Get the arg of a reply. | |
void | arg (ACE_UINT32) |
Set the arg of a reply. | |
int | encode (void *&) |
Encode the message before transfer. | |
int | decode (void) |
Decode a message after reception. | |
void | dump (void) const |
Print out the values of the message for debugging purposes. | |
Private Attributes | |
ACE_Token_Reply::Transfer | transfer_ |
This class is implemented to minimize data copying. In particular, all marshaling is done in situ...
Definition at line 206 of file Token_Request_Reply.h.
|
Default constructor.
Definition at line 146 of file Token_Request_Reply.cpp. References arg(), errnum(), and length().
|
|
Set the arg of a reply.
|
|
Get the arg of a reply.
Referenced by ACE_Token_Reply(). |
|
Decode a message after reception.
Definition at line 167 of file Token_Request_Reply.cpp.
00168 {
00169 return 0;
00170 }
|
|
Print out the values of the message for debugging purposes.
Definition at line 175 of file Token_Request_Reply.cpp. References ACE_DEBUG, ACE_LIB_TEXT, errnum(), and LM_DEBUG.
|
|
Encode the message before transfer.
Definition at line 157 of file Token_Request_Reply.cpp. References length().
|
|
Set the errno of a reply.
|
|
Get the errno of a reply.
Referenced by ACE_Token_Reply(), and dump(). |
|
Set the length of the encoded/decoded message.
|
|
Get the length of the encoded/decoded message.
Referenced by ACE_Token_Reply(), and encode(). |
|
|