summaryrefslogtreecommitdiff
path: root/TAO/tao/Pluggable_Messaging_Utils.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2005-01-04 10:01:49 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2005-01-04 10:01:49 +0000
commitb3c7e3b56657fdf2e1adba64d699413e35271d2e (patch)
tree0168807a9581678c264df6311ce185a274f716cb /TAO/tao/Pluggable_Messaging_Utils.h
parent88ced122113333fadfea514673cc4ab0f99c9773 (diff)
downloadATCD-b3c7e3b56657fdf2e1adba64d699413e35271d2e.tar.gz
ChangeLogTag: Tue Jan 4 09:42:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/Pluggable_Messaging_Utils.h')
-rw-r--r--TAO/tao/Pluggable_Messaging_Utils.h56
1 files changed, 28 insertions, 28 deletions
diff --git a/TAO/tao/Pluggable_Messaging_Utils.h b/TAO/tao/Pluggable_Messaging_Utils.h
index d85c44770bd..9a7b421ecbf 100644
--- a/TAO/tao/Pluggable_Messaging_Utils.h
+++ b/TAO/tao/Pluggable_Messaging_Utils.h
@@ -118,29 +118,28 @@ public:
// keeping off. I dont want to add something for the kick of it :-)
enum TAO_Pluggable_Header_Type
{
- // = TITLE
- // = DESCRIPTION
- //
TAO_PLUGGABLE_MESSAGE_REQUEST_HEADER = 0,
TAO_PLUGGABLE_MESSAGE_LOCATE_REQUEST_HEADER
};
+/**
+ * Provide an external interface for the users of this pluggable
+ * messaging framework to denote existing message types. This has
+ * an inspiration from GIOP. So if anybody wants to add more message
+ * types you are welcome but please do not change the numbering
+ * scheme as this would affect GIOP.
+ *
+ * @note
+ * We may not need everything here. It would be good if we
+ * have only the following messages TAO_PLUGGABLE_MESSAGE_REQUEST,
+ * TAO_PLUGGABLE_MESSAGE_REPLY,
+ * TAO_PLUGGABLE_MESSAGE_CLOSECONNECTION,
+ * TAO_PLUGGABLE_MESSAGE_MESSAGE_ERROR. Changes will be made once
+ * the rest of the stuff gets ready to roll
+ */
enum TAO_Pluggable_Message_Type
{
- // = DESCRIPTION
- // Provide an external interface for the users of this pluggable
- // messaging framework to denote existing message types. This has
- // an inspiration from GIOP. So if anybody wants to add more message
- // types you are welcome but please do not change the numbering
- // scheme as this would affect GIOP.
-
- // NOTE: We may not need evrything here. It would be good if we
- // have only the following messages TAO_PLUGGABLE_MESSAGE_REQUEST,
- // TAO_PLUGGABLE_MESSAGE_REPLY,
- // TAO_PLUGGABLE_MESSAGE_CLOSECONNECTION,
- // TAO_PLUGGABLE_MESSAGE_MESSAGE_ERROR. Changes will be made once
- // the rest of the stuff gets ready to roll.
TAO_PLUGGABLE_MESSAGE_REQUEST = 0, // sent by client.
TAO_PLUGGABLE_MESSAGE_REPLY = 1, // by server.
TAO_PLUGGABLE_MESSAGE_CANCELREQUEST = 2, // by client.
@@ -154,31 +153,32 @@ enum TAO_Pluggable_Message_Type
// @@ Bala: This is a hopeless GIOPism.
// @@ Carlos: Agreed.
+/**
+ * Provide an external interface for the users of this pluggable
+ * messaging framework to denote existing Exception types. This has
+ * an inspiration from GIOP. So if anybody wants to add more message
+ * types you are welcome but please do not change the numbering
+ * scheme as this would affect GIOP.
+ */
enum TAO_Pluggable_Message_Exception_Type
{
- // = DESCRIPTION
- // Provide an external interface for the users of this pluggable
- // messaging framework to denote existing Exception types. This has
- // an inspiration from GIOP. So if anybody wants to add more message
- // types you are welcome but please do not change the numbering
- // scheme as this would affect GIOP.
+ /// Request completed successfully
TAO_PLUGGABLE_MESSAGE_NO_EXCEPTION = 0,
- // Request completed successfully
+ /// Request terminated with user exception
TAO_PLUGGABLE_MESSAGE_USER_EXCEPTION,
- // Request terminated with user exception
+ /// Request terminated with system exception
TAO_PLUGGABLE_MESSAGE_SYSTEM_EXCEPTION,
- // Request terminated with system exception
+ /// Reply is a location forward type
TAO_PLUGGABLE_MESSAGE_LOCATION_FORWARD,
- // Reply is a location forward type
+ /// PLUGGABLE_MESSAGE 1.2, Reply is a location forward perm type..
TAO_PLUGGABLE_MESSAGE_LOCATION_FORWARD_PERM,
- // PLUGGABLE_MESSAGE 1.2, Reply is a location forward perm type..
+ /// GIOP1.2,
TAO_PLUGGABLE_MESSAGE_NEEDS_ADDRESSING_MODE
- // GIOP1.2,
};
#if defined (__ACE_INLINE__)