author | Michael Krelin <hacker@klever.net> | 2008-02-08 21:31:53 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2008-02-08 21:31:53 (UTC) |
commit | f2ba7be73a62d115f293f5d690efabcafd5fcf4f (patch) (unidiff) | |
tree | e48236090105e96d0649a95d2222a2b23ab73658 | |
parent | 1a4d8acd92d17ec1363886383bd171eabef2e25e (diff) | |
download | libopkele-f2ba7be73a62d115f293f5d690efabcafd5fcf4f.zip libopkele-f2ba7be73a62d115f293f5d690efabcafd5fcf4f.tar.gz libopkele-f2ba7be73a62d115f293f5d690efabcafd5fcf4f.tar.bz2 |
a bit of doxygenation for prequeue_RP
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | include/opkele/prequeue_rp.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/opkele/prequeue_rp.h b/include/opkele/prequeue_rp.h index b98dd5a..68fe03d 100644 --- a/include/opkele/prequeue_rp.h +++ b/include/opkele/prequeue_rp.h | |||
@@ -9,12 +9,15 @@ | |||
9 | namespace opkele { | 9 | namespace opkele { |
10 | using std::string; | 10 | using std::string; |
11 | using std::set; | 11 | using std::set; |
12 | using std::iterator; | 12 | using std::iterator; |
13 | using std::output_iterator_tag; | 13 | using std::output_iterator_tag; |
14 | 14 | ||
15 | /** | ||
16 | * discovery-enabled RP implementation, prequeueing discovered endpoints | ||
17 | */ | ||
15 | class prequeue_RP : public basic_RP { | 18 | class prequeue_RP : public basic_RP { |
16 | public: | 19 | public: |
17 | /** | 20 | /** |
18 | * @name Session persistent store API | 21 | * @name Session persistent store API |
19 | * @{ | 22 | * @{ |
20 | */ | 23 | */ |
@@ -63,14 +66,18 @@ namespace opkele { | |||
63 | */ | 66 | */ |
64 | 67 | ||
65 | /** | 68 | /** |
66 | * @name Actions | 69 | * @name Actions |
67 | * @{ | 70 | * @{ |
68 | */ | 71 | */ |
72 | /** | ||
73 | * In addition to base class implementation it does endpoints | ||
74 | * discovery and queueing | ||
75 | * @param usi User-suppled identifier | ||
76 | */ | ||
69 | void initiate(const string& usi); | 77 | void initiate(const string& usi); |
70 | |||
71 | /** | 78 | /** |
72 | * @} | 79 | * @} |
73 | */ | 80 | */ |
74 | 81 | ||
75 | void verify_OP(const string& OP, | 82 | void verify_OP(const string& OP, |
76 | const string& claimed_id,const string& identity) const; | 83 | const string& claimed_id,const string& identity) const; |