diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2003-05-22 07:54:15 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2003-05-22 07:54:15 +0000 |
commit | 55f7c006a511da1f597e337a6f97e94801d445a1 (patch) | |
tree | 9797372ca98adcf586e155f8d964935a8e4d0ae0 /ace/Token_Collection.h | |
parent | db30d5ea397f7870929a40096eee23e040249aea (diff) | |
download | ATCD-55f7c006a511da1f597e337a6f97e94801d445a1.tar.gz |
ChangeLogTag: Thu May 22 07:09:12 UTC 2003 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ace/Token_Collection.h')
-rw-r--r-- | ace/Token_Collection.h | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/ace/Token_Collection.h b/ace/Token_Collection.h index 60ecf8270e6..9bc1bf69dbc 100644 --- a/ace/Token_Collection.h +++ b/ace/Token_Collection.h @@ -69,19 +69,20 @@ public: // Collection Management operations + /** + * Insert a Token into the collection. All ACE_Token type + * operations performed on the collection will also be performed on + * the new_proxy until it is removed. Note that no operations + * performed prior to the insertion will be performed. Returns: 0 + * on success, -1 on failure with <errno> == problem. If a token + * proxy already exists in the collection with the same name, the + * insertion will fail. Also, <token> is copied. Note that during + * the copy, client_id's are *not* inherited. The client ID of the + * thread using the collection will be used. Client ID's can be + * changed explicity on each proxy using is_member. + */ int insert (ACE_Token_Proxy &token); - // Insert a Token into the collection. All ACE_Token type - // operations performed on the collection will also be performed on - // the new_proxy until it is removed. Note that no operations - // performed prior to the insertion will be performed. Returns: 0 - // on success, -1 on failure with <errno> == problem. If a token - // proxy already exists in the collection with the same name, the - // insertion will fail. Also, <token> is copied. Note that during - // the copy, client_id's are *not* inherited. The client ID of the - // thread using the collection will be used. Client ID's can be - // changed explicity on each proxy using is_member. - /** * removes the ACE_Token matching the given token_name from the * collection. On success, extract returns 0. On failure @@ -203,15 +204,13 @@ protected: /// Allows iterations through collection_ /** - * @note Deprecated typedef. Use COLLECTION::ITERATOR trait - * instead. + * @deprecated Deprecated typedef. Use COLLECTION::ITERATOR trait instead. */ typedef COLLECTION::ITERATOR COLLECTION_ITERATOR; /// Allows iterations through collection_ /** - * @note Deprecated typedef. Use COLLECTION::ENTRY trait - * instead. + * @deprecated Deprecated typedef. Use COLLECTION::ENTRY trait instead. */ typedef COLLECTION::ENTRY COLLECTION_ENTRY; |