journeta 0.1.7 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (92) hide show
  1. data/Gemfile +8 -0
  2. data/Gemfile.lock +20 -0
  3. data/{History.txt → HISTORY} +13 -1
  4. data/LICENSE +51 -0
  5. data/License.txt +2 -2
  6. data/{README.txt → README.rdoc} +12 -17
  7. data/Rakefile +46 -112
  8. data/VERSION +1 -0
  9. data/{examples/instant_messenger.rb → bin/journeta_instant_messenger.rb} +13 -0
  10. data/bin/journeta_mock_peers.rb +32 -0
  11. data/{examples/network_status.rb → bin/journeta_network_status.rb} +0 -0
  12. data/bin/journeta_peer_fuzzer.rb +54 -0
  13. data/{examples/queue_client.rb → bin/journeta_queue_client.rb} +0 -0
  14. data/{examples/queue_server.rb → bin/journeta_queue_server.rb} +0 -0
  15. data/bin/journeta_thread_leak_check.rb +16 -0
  16. data/bin/journeta_top.rb +73 -0
  17. data/{examples/instant_messenger_gui.rb → broken/journeta_instant_messenger_gui.rb} +0 -2
  18. data/broken/journeta_instant_messenger_shoes.rb +52 -0
  19. data/lib/diff.rb +280 -0
  20. data/lib/journeta.rb +1 -0
  21. data/lib/journeta/asynchronous.rb +2 -2
  22. data/lib/journeta/exception.rb +8 -0
  23. data/lib/journeta/journeta_engine.rb +4 -5
  24. data/lib/journeta/logger.rb +1 -1
  25. data/lib/journeta/peer_connection.rb +2 -2
  26. data/lib/journeta/peer_listener.rb +2 -2
  27. data/lib/journeta/presence_broadcaster.rb +19 -5
  28. data/lib/journeta/presence_listener.rb +8 -4
  29. data/lib/journeta/version.rb +6 -4
  30. data/rdoc/Array.html +199 -0
  31. data/rdoc/Diff.html +714 -0
  32. data/rdoc/Diffable.html +409 -0
  33. data/rdoc/Journeta.html +288 -0
  34. data/rdoc/Journeta/Asynchronous.html +429 -0
  35. data/rdoc/Journeta/Common.html +205 -0
  36. data/rdoc/Journeta/Common/BasicMessage.html +228 -0
  37. data/rdoc/Journeta/Common/DummyPeerHandler.html +237 -0
  38. data/rdoc/Journeta/Common/Job.html +279 -0
  39. data/rdoc/Journeta/Common/Shutdown.html +236 -0
  40. data/rdoc/Journeta/DefaultPeerHandler.html +248 -0
  41. data/rdoc/Journeta/DefaultPeerRegisteredHandler.html +249 -0
  42. data/rdoc/Journeta/DefaultPeerUnregisteredHandler.html +249 -0
  43. data/rdoc/Journeta/DefaultPeerUpdatedHandler.html +249 -0
  44. data/rdoc/Journeta/Engine.html +953 -0
  45. data/rdoc/Journeta/Logger.html +237 -0
  46. data/rdoc/Journeta/NotImplementedException.html +188 -0
  47. data/rdoc/Journeta/PeerConnection.html +549 -0
  48. data/rdoc/Journeta/PeerListener.html +276 -0
  49. data/rdoc/Journeta/PeerRegistry.html +804 -0
  50. data/rdoc/Journeta/PresenceBroadcaster.html +306 -0
  51. data/rdoc/Journeta/PresenceListener.html +300 -0
  52. data/rdoc/Journeta/PresenceMessage.html +321 -0
  53. data/rdoc/Journeta/VERSION.html +181 -0
  54. data/rdoc/README_rdoc.html +196 -0
  55. data/rdoc/String.html +199 -0
  56. data/rdoc/created.rid +20 -0
  57. data/rdoc/index.html +212 -0
  58. data/rdoc/lib/diff_rb.html +52 -0
  59. data/rdoc/lib/journeta/asynchronous_rb.html +60 -0
  60. data/rdoc/lib/journeta/common/basic_message_rb.html +52 -0
  61. data/rdoc/lib/journeta/common/dummy_peer_handler_rb.html +52 -0
  62. data/rdoc/lib/journeta/common/job_rb.html +52 -0
  63. data/rdoc/lib/journeta/common/shutdown_rb.html +52 -0
  64. data/rdoc/lib/journeta/exception_rb.html +55 -0
  65. data/rdoc/lib/journeta/journeta_engine_rb.html +62 -0
  66. data/rdoc/lib/journeta/logger_rb.html +55 -0
  67. data/rdoc/lib/journeta/peer_connection_rb.html +58 -0
  68. data/rdoc/lib/journeta/peer_handler_rb.html +52 -0
  69. data/rdoc/lib/journeta/peer_listener_rb.html +60 -0
  70. data/rdoc/lib/journeta/peer_registry_rb.html +54 -0
  71. data/rdoc/lib/journeta/presence_broadcaster_rb.html +57 -0
  72. data/rdoc/lib/journeta/presence_listener_rb.html +62 -0
  73. data/rdoc/lib/journeta/presence_message_rb.html +52 -0
  74. data/rdoc/lib/journeta/version_rb.html +52 -0
  75. data/rdoc/lib/journeta_rb.html +91 -0
  76. data/rdoc/rdoc.css +706 -0
  77. data/test/helper.rb +19 -0
  78. data/test/test_lifecycle.rb +49 -9
  79. data/website/images/arrow.png +0 -0
  80. data/website/images/banner.jpg +0 -0
  81. data/website/images/content_shadow.png +0 -0
  82. data/website/images/content_side.png +0 -0
  83. data/website/images/header.jpg +0 -0
  84. data/website/images/header_side.jpg +0 -0
  85. data/website/index.html +1 -1
  86. data/website/index.txt +1 -1
  87. data/website/stylesheets/reset.css +30 -0
  88. data/website/stylesheets/screen.css +1 -1
  89. metadata +152 -46
  90. data/test/test_event_broadcaster.rb +0 -15
  91. data/test/test_helper.rb +0 -4
  92. data/test/test_journeta.rb +0 -11
@@ -0,0 +1,429 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
7
+
8
+ <title>Class: Journeta::Asynchronous</title>
9
+
10
+ <link rel="stylesheet" href="../rdoc.css" type="text/css" media="screen" />
11
+
12
+ <script src="../js/jquery.js" type="text/javascript"
13
+ charset="utf-8"></script>
14
+ <script src="../js/thickbox-compressed.js" type="text/javascript"
15
+ charset="utf-8"></script>
16
+ <script src="../js/quicksearch.js" type="text/javascript"
17
+ charset="utf-8"></script>
18
+ <script src="../js/darkfish.js" type="text/javascript"
19
+ charset="utf-8"></script>
20
+
21
+ </head>
22
+ <body class="class">
23
+
24
+ <div id="metadata">
25
+ <div id="home-metadata">
26
+ <div id="home-section" class="section">
27
+ <h3 class="section-header">
28
+ <a href="../index.html">Home</a>
29
+ <a href="../index.html#classes">Classes</a>
30
+ <a href="../index.html#methods">Methods</a>
31
+ </h3>
32
+ </div>
33
+ </div>
34
+
35
+ <div id="file-metadata">
36
+ <div id="file-list-section" class="section">
37
+ <h3 class="section-header">In Files</h3>
38
+ <div class="section-body">
39
+ <ul>
40
+
41
+ <li><a href="../lib/journeta/asynchronous_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
42
+ class="thickbox" title="lib/journeta/asynchronous.rb">lib/journeta/asynchronous.rb</a></li>
43
+
44
+ </ul>
45
+ </div>
46
+ </div>
47
+
48
+
49
+ </div>
50
+
51
+ <div id="class-metadata">
52
+
53
+ <!-- Parent Class -->
54
+
55
+ <div id="parent-class-section" class="section">
56
+ <h3 class="section-header">Parent</h3>
57
+
58
+ <p class="link">Object</p>
59
+
60
+ </div>
61
+
62
+
63
+ <!-- Namespace Contents -->
64
+
65
+
66
+ <!-- Method Quickref -->
67
+
68
+ <div id="method-list-section" class="section">
69
+ <h3 class="section-header">Methods</h3>
70
+ <ul class="link-list">
71
+
72
+ <li><a href="#method-c-new">::new</a></li>
73
+
74
+ <li><a href="#method-i-go">#go</a></li>
75
+
76
+ <li><a href="#method-i-start">#start</a></li>
77
+
78
+ <li><a href="#method-i-stop">#stop</a></li>
79
+
80
+ </ul>
81
+ </div>
82
+
83
+
84
+ <!-- Included Modules -->
85
+
86
+ <div id="includes-section" class="section">
87
+ <h3 class="section-header">Included Modules</h3>
88
+ <ul class="link-list">
89
+
90
+
91
+ <li><span class="include">Logger</span></li>
92
+
93
+
94
+ </ul>
95
+ </div>
96
+
97
+ </div>
98
+
99
+ <div id="project-metadata">
100
+
101
+
102
+ <div id="fileindex-section" class="section project-section">
103
+ <h3 class="section-header">Files</h3>
104
+ <ul>
105
+
106
+ <li class="file"><a href="../README_rdoc.html">README.rdoc</a></li>
107
+
108
+ </ul>
109
+ </div>
110
+
111
+
112
+ <div id="classindex-section" class="section project-section">
113
+ <h3 class="section-header">Class Index
114
+ <span class="search-toggle"><img src="../images/find.png"
115
+ height="16" width="16" alt="[+]"
116
+ title="show/hide quicksearch" /></span></h3>
117
+ <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
118
+ <fieldset>
119
+ <legend>Quicksearch</legend>
120
+ <input type="text" name="quicksearch" value=""
121
+ class="quicksearch-field" />
122
+ </fieldset>
123
+ </form>
124
+
125
+ <ul class="link-list">
126
+
127
+ <li><a href="../Journeta/Asynchronous.html">Journeta::Asynchronous</a></li>
128
+
129
+ <li><a href="../Journeta/Common.html">Journeta::Common</a></li>
130
+
131
+ <li><a href="../Journeta/Common/BasicMessage.html">Journeta::Common::BasicMessage</a></li>
132
+
133
+ <li><a href="../Journeta/Common/DummyPeerHandler.html">Journeta::Common::DummyPeerHandler</a></li>
134
+
135
+ <li><a href="../Journeta/Common/Job.html">Journeta::Common::Job</a></li>
136
+
137
+ <li><a href="../Journeta/Common/Shutdown.html">Journeta::Common::Shutdown</a></li>
138
+
139
+ <li><a href="../Journeta/DefaultPeerHandler.html">Journeta::DefaultPeerHandler</a></li>
140
+
141
+ <li><a href="../Journeta/DefaultPeerRegisteredHandler.html">Journeta::DefaultPeerRegisteredHandler</a></li>
142
+
143
+ <li><a href="../Journeta/DefaultPeerUnregisteredHandler.html">Journeta::DefaultPeerUnregisteredHandler</a></li>
144
+
145
+ <li><a href="../Journeta/DefaultPeerUpdatedHandler.html">Journeta::DefaultPeerUpdatedHandler</a></li>
146
+
147
+ <li><a href="../Journeta/Engine.html">Journeta::Engine</a></li>
148
+
149
+ <li><a href="../Journeta/Logger.html">Journeta::Logger</a></li>
150
+
151
+ <li><a href="../Journeta/NotImplementedException.html">Journeta::NotImplementedException</a></li>
152
+
153
+ <li><a href="../Journeta/PeerConnection.html">Journeta::PeerConnection</a></li>
154
+
155
+ <li><a href="../Journeta/PeerListener.html">Journeta::PeerListener</a></li>
156
+
157
+ <li><a href="../Journeta/PeerRegistry.html">Journeta::PeerRegistry</a></li>
158
+
159
+ <li><a href="../Journeta/PresenceBroadcaster.html">Journeta::PresenceBroadcaster</a></li>
160
+
161
+ <li><a href="../Journeta/PresenceListener.html">Journeta::PresenceListener</a></li>
162
+
163
+ <li><a href="../Journeta/PresenceMessage.html">Journeta::PresenceMessage</a></li>
164
+
165
+ <li><a href="../Array.html">Array</a></li>
166
+
167
+ <li><a href="../Diff.html">Diff</a></li>
168
+
169
+ <li><a href="../Diffable.html">Diffable</a></li>
170
+
171
+ <li><a href="../String.html">String</a></li>
172
+
173
+ </ul>
174
+ <div id="no-class-search-results" style="display: none;">No matching classes.</div>
175
+ </div>
176
+
177
+
178
+ </div>
179
+ </div>
180
+
181
+ <div id="documentation">
182
+ <h1 class="class">Journeta::Asynchronous</h1>
183
+
184
+ <div id="description">
185
+ <p>
186
+ See <a href="Engine.html">Journeta::Engine</a>
187
+ </p>
188
+
189
+ </div>
190
+
191
+ <!-- Constants -->
192
+
193
+
194
+ <!-- Attributes -->
195
+
196
+ <div id="attribute-method-details" class="method-section section">
197
+ <h3 class="section-header">Attributes</h3>
198
+
199
+
200
+ <div id="thread-attribute-method" class="method-detail">
201
+ <a name="thread"></a>
202
+
203
+ <a name="thread="></a>
204
+
205
+ <div class="method-heading attribute-method-heading">
206
+ <span class="method-name">thread</span><span
207
+ class="attribute-access-type">[RW]</span>
208
+ </div>
209
+
210
+ <div class="method-description">
211
+
212
+
213
+
214
+ </div>
215
+ </div>
216
+
217
+ <div id="engine-attribute-method" class="method-detail">
218
+ <a name="engine"></a>
219
+
220
+ <a name="engine="></a>
221
+
222
+ <div class="method-heading attribute-method-heading">
223
+ <span class="method-name">engine</span><span
224
+ class="attribute-access-type">[RW]</span>
225
+ </div>
226
+
227
+ <div class="method-description">
228
+
229
+
230
+
231
+ </div>
232
+ </div>
233
+
234
+ </div>
235
+
236
+
237
+ <!-- Methods -->
238
+
239
+ <div id="public-class-method-details" class="method-section section">
240
+ <h3 class="section-header">Public Class Methods</h3>
241
+
242
+
243
+ <div id="new-method" class="method-detail ">
244
+ <a name="method-c-new"></a>
245
+
246
+ <div class="method-heading">
247
+
248
+ <span class="method-name">new</span><span
249
+ class="method-args">(engine)</span>
250
+ <span class="method-click-advice">click to toggle source</span>
251
+
252
+ </div>
253
+
254
+ <div class="method-description">
255
+
256
+
257
+
258
+
259
+
260
+ <div class="method-source-code"
261
+ id="new-source">
262
+ <pre>
263
+ <span class="ruby-comment cmt"># File lib/journeta/asynchronous.rb, line 18</span>
264
+ 18: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">engine</span>)
265
+ 19: <span class="ruby-ivar">@engine</span> = <span class="ruby-identifier">engine</span>
266
+ 20: <span class="ruby-ivar">@thread_lock</span> = <span class="ruby-constant">Mutex</span>.<span class="ruby-identifier">new</span>
267
+ 21: <span class="ruby-ivar">@thread</span> = <span class="ruby-keyword kw">nil</span>
268
+ 22: <span class="ruby-keyword kw">end</span></pre>
269
+ </div>
270
+
271
+ </div>
272
+
273
+
274
+
275
+
276
+ </div>
277
+
278
+
279
+ </div>
280
+
281
+ <div id="public-instance-method-details" class="method-section section">
282
+ <h3 class="section-header">Public Instance Methods</h3>
283
+
284
+
285
+ <div id="go-method" class="method-detail ">
286
+ <a name="method-i-go"></a>
287
+
288
+ <div class="method-heading">
289
+
290
+ <span class="method-name">go</span><span
291
+ class="method-args">()</span>
292
+ <span class="method-click-advice">click to toggle source</span>
293
+
294
+ </div>
295
+
296
+ <div class="method-description">
297
+
298
+ <p>
299
+ Abstract thread logic method which must be implemented by the sub-class.
300
+ </p>
301
+
302
+
303
+
304
+ <div class="method-source-code"
305
+ id="go-source">
306
+ <pre>
307
+ <span class="ruby-comment cmt"># File lib/journeta/asynchronous.rb, line 59</span>
308
+ 59: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">go</span>
309
+ 60: <span class="ruby-identifier">raise</span> <span class="ruby-constant">NotImplementedException</span>
310
+ 61: <span class="ruby-keyword kw">end</span></pre>
311
+ </div>
312
+
313
+ </div>
314
+
315
+
316
+
317
+
318
+ </div>
319
+
320
+
321
+ <div id="start-method" class="method-detail ">
322
+ <a name="method-i-start"></a>
323
+
324
+ <div class="method-heading">
325
+
326
+ <span class="method-name">start</span><span
327
+ class="method-args">()</span>
328
+ <span class="method-click-advice">click to toggle source</span>
329
+
330
+ </div>
331
+
332
+ <div class="method-description">
333
+
334
+ <p>
335
+ Start the <tt>Thread</tt> for this instance, iff not already running.
336
+ </p>
337
+
338
+
339
+
340
+ <div class="method-source-code"
341
+ id="start-source">
342
+ <pre>
343
+ <span class="ruby-comment cmt"># File lib/journeta/asynchronous.rb, line 25</span>
344
+ 25: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">start</span>
345
+ 26: <span class="ruby-ivar">@thread_lock</span>.<span class="ruby-identifier">synchronize</span> <span class="ruby-keyword kw">do</span>
346
+ 27: <span class="ruby-keyword kw">if</span> <span class="ruby-ivar">@thread</span>
347
+ 28: <span class="ruby-comment cmt"># Do not restart it.</span>
348
+ 29: <span class="ruby-keyword kw">else</span>
349
+ 30: <span class="ruby-identifier">putsd</span> <span class="ruby-node">&quot;Creating asynchronous thread for I/O: #{self.class.to_s}.&quot;</span>
350
+ 31: <span class="ruby-ivar">@thread</span> = <span class="ruby-constant">Thread</span>.<span class="ruby-identifier">new</span> {
351
+ 32: <span class="ruby-identifier">go</span>
352
+ 33: }
353
+ 34: <span class="ruby-keyword kw">end</span>
354
+ 35: <span class="ruby-keyword kw">end</span>
355
+ 36: <span class="ruby-keyword kw">end</span></pre>
356
+ </div>
357
+
358
+ </div>
359
+
360
+
361
+
362
+
363
+ </div>
364
+
365
+
366
+ <div id="stop-method" class="method-detail ">
367
+ <a name="method-i-stop"></a>
368
+
369
+ <div class="method-heading">
370
+
371
+ <span class="method-name">stop</span><span
372
+ class="method-args">()</span>
373
+ <span class="method-click-advice">click to toggle source</span>
374
+
375
+ </div>
376
+
377
+ <div class="method-description">
378
+
379
+ <p>
380
+ Stop the <tt>Thread</tt> associated with this instance, iff not already
381
+ stopped.
382
+ </p>
383
+
384
+
385
+
386
+ <div class="method-source-code"
387
+ id="stop-source">
388
+ <pre>
389
+ <span class="ruby-comment cmt"># File lib/journeta/asynchronous.rb, line 48</span>
390
+ 48: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">stop</span>
391
+ 49: <span class="ruby-ivar">@thread_lock</span>.<span class="ruby-identifier">synchronize</span> <span class="ruby-keyword kw">do</span>
392
+ 50: <span class="ruby-keyword kw">if</span> <span class="ruby-ivar">@thread</span>
393
+ 51: <span class="ruby-constant">Thread</span>.<span class="ruby-identifier">kill</span>(<span class="ruby-ivar">@thread</span>) <span class="ruby-comment cmt"># nasty pants!</span>
394
+ 52: <span class="ruby-ivar">@thread</span>.<span class="ruby-identifier">join</span>
395
+ 53: <span class="ruby-ivar">@thread</span> = <span class="ruby-keyword kw">nil</span>
396
+ 54: <span class="ruby-keyword kw">end</span>
397
+ 55: <span class="ruby-keyword kw">end</span>
398
+ 56: <span class="ruby-keyword kw">end</span></pre>
399
+ </div>
400
+
401
+ </div>
402
+
403
+
404
+
405
+
406
+ </div>
407
+
408
+
409
+ </div>
410
+
411
+
412
+ </div>
413
+
414
+
415
+ <div id="rdoc-debugging-section-dump" class="debugging-section">
416
+
417
+ <p>Disabled; run with --debug to generate this.</p>
418
+
419
+ </div>
420
+
421
+ <div id="validator-badges">
422
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
423
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
424
+ Rdoc Generator</a> 1.1.6</small>.</p>
425
+ </div>
426
+
427
+ </body>
428
+ </html>
429
+
@@ -0,0 +1,205 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
7
+
8
+ <title>Module: Journeta::Common</title>
9
+
10
+ <link rel="stylesheet" href="../rdoc.css" type="text/css" media="screen" />
11
+
12
+ <script src="../js/jquery.js" type="text/javascript"
13
+ charset="utf-8"></script>
14
+ <script src="../js/thickbox-compressed.js" type="text/javascript"
15
+ charset="utf-8"></script>
16
+ <script src="../js/quicksearch.js" type="text/javascript"
17
+ charset="utf-8"></script>
18
+ <script src="../js/darkfish.js" type="text/javascript"
19
+ charset="utf-8"></script>
20
+
21
+ </head>
22
+ <body class="module">
23
+
24
+ <div id="metadata">
25
+ <div id="home-metadata">
26
+ <div id="home-section" class="section">
27
+ <h3 class="section-header">
28
+ <a href="../index.html">Home</a>
29
+ <a href="../index.html#classes">Classes</a>
30
+ <a href="../index.html#methods">Methods</a>
31
+ </h3>
32
+ </div>
33
+ </div>
34
+
35
+ <div id="file-metadata">
36
+ <div id="file-list-section" class="section">
37
+ <h3 class="section-header">In Files</h3>
38
+ <div class="section-body">
39
+ <ul>
40
+
41
+ <li><a href="../lib/journeta/common/basic_message_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
42
+ class="thickbox" title="lib/journeta/common/basic_message.rb">lib/journeta/common/basic_message.rb</a></li>
43
+
44
+ <li><a href="../lib/journeta/common/dummy_peer_handler_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
45
+ class="thickbox" title="lib/journeta/common/dummy_peer_handler.rb">lib/journeta/common/dummy_peer_handler.rb</a></li>
46
+
47
+ <li><a href="../lib/journeta/common/job_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
48
+ class="thickbox" title="lib/journeta/common/job.rb">lib/journeta/common/job.rb</a></li>
49
+
50
+ <li><a href="../lib/journeta/common/shutdown_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
51
+ class="thickbox" title="lib/journeta/common/shutdown.rb">lib/journeta/common/shutdown.rb</a></li>
52
+
53
+ </ul>
54
+ </div>
55
+ </div>
56
+
57
+
58
+ </div>
59
+
60
+ <div id="class-metadata">
61
+
62
+ <!-- Parent Class -->
63
+
64
+
65
+ <!-- Namespace Contents -->
66
+
67
+ <div id="namespace-list-section" class="section">
68
+ <h3 class="section-header">Namespace</h3>
69
+ <ul class="link-list">
70
+
71
+ <li><span class="type">MODULE</span> <a href="Common/Shutdown.html">Journeta::Common::Shutdown</a></li>
72
+
73
+ <li><span class="type">CLASS</span> <a href="Common/BasicMessage.html">Journeta::Common::BasicMessage</a></li>
74
+
75
+ <li><span class="type">CLASS</span> <a href="Common/DummyPeerHandler.html">Journeta::Common::DummyPeerHandler</a></li>
76
+
77
+ <li><span class="type">CLASS</span> <a href="Common/Job.html">Journeta::Common::Job</a></li>
78
+
79
+ </ul>
80
+ </div>
81
+
82
+
83
+ <!-- Method Quickref -->
84
+
85
+
86
+ <!-- Included Modules -->
87
+
88
+ </div>
89
+
90
+ <div id="project-metadata">
91
+
92
+
93
+ <div id="fileindex-section" class="section project-section">
94
+ <h3 class="section-header">Files</h3>
95
+ <ul>
96
+
97
+ <li class="file"><a href="../README_rdoc.html">README.rdoc</a></li>
98
+
99
+ </ul>
100
+ </div>
101
+
102
+
103
+ <div id="classindex-section" class="section project-section">
104
+ <h3 class="section-header">Class Index
105
+ <span class="search-toggle"><img src="../images/find.png"
106
+ height="16" width="16" alt="[+]"
107
+ title="show/hide quicksearch" /></span></h3>
108
+ <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
109
+ <fieldset>
110
+ <legend>Quicksearch</legend>
111
+ <input type="text" name="quicksearch" value=""
112
+ class="quicksearch-field" />
113
+ </fieldset>
114
+ </form>
115
+
116
+ <ul class="link-list">
117
+
118
+ <li><a href="../Journeta/Asynchronous.html">Journeta::Asynchronous</a></li>
119
+
120
+ <li><a href="../Journeta/Common.html">Journeta::Common</a></li>
121
+
122
+ <li><a href="../Journeta/Common/BasicMessage.html">Journeta::Common::BasicMessage</a></li>
123
+
124
+ <li><a href="../Journeta/Common/DummyPeerHandler.html">Journeta::Common::DummyPeerHandler</a></li>
125
+
126
+ <li><a href="../Journeta/Common/Job.html">Journeta::Common::Job</a></li>
127
+
128
+ <li><a href="../Journeta/Common/Shutdown.html">Journeta::Common::Shutdown</a></li>
129
+
130
+ <li><a href="../Journeta/DefaultPeerHandler.html">Journeta::DefaultPeerHandler</a></li>
131
+
132
+ <li><a href="../Journeta/DefaultPeerRegisteredHandler.html">Journeta::DefaultPeerRegisteredHandler</a></li>
133
+
134
+ <li><a href="../Journeta/DefaultPeerUnregisteredHandler.html">Journeta::DefaultPeerUnregisteredHandler</a></li>
135
+
136
+ <li><a href="../Journeta/DefaultPeerUpdatedHandler.html">Journeta::DefaultPeerUpdatedHandler</a></li>
137
+
138
+ <li><a href="../Journeta/Engine.html">Journeta::Engine</a></li>
139
+
140
+ <li><a href="../Journeta/Logger.html">Journeta::Logger</a></li>
141
+
142
+ <li><a href="../Journeta/NotImplementedException.html">Journeta::NotImplementedException</a></li>
143
+
144
+ <li><a href="../Journeta/PeerConnection.html">Journeta::PeerConnection</a></li>
145
+
146
+ <li><a href="../Journeta/PeerListener.html">Journeta::PeerListener</a></li>
147
+
148
+ <li><a href="../Journeta/PeerRegistry.html">Journeta::PeerRegistry</a></li>
149
+
150
+ <li><a href="../Journeta/PresenceBroadcaster.html">Journeta::PresenceBroadcaster</a></li>
151
+
152
+ <li><a href="../Journeta/PresenceListener.html">Journeta::PresenceListener</a></li>
153
+
154
+ <li><a href="../Journeta/PresenceMessage.html">Journeta::PresenceMessage</a></li>
155
+
156
+ <li><a href="../Array.html">Array</a></li>
157
+
158
+ <li><a href="../Diff.html">Diff</a></li>
159
+
160
+ <li><a href="../Diffable.html">Diffable</a></li>
161
+
162
+ <li><a href="../String.html">String</a></li>
163
+
164
+ </ul>
165
+ <div id="no-class-search-results" style="display: none;">No matching classes.</div>
166
+ </div>
167
+
168
+
169
+ </div>
170
+ </div>
171
+
172
+ <div id="documentation">
173
+ <h1 class="module">Journeta::Common</h1>
174
+
175
+ <div id="description">
176
+
177
+ </div>
178
+
179
+ <!-- Constants -->
180
+
181
+
182
+ <!-- Attributes -->
183
+
184
+
185
+ <!-- Methods -->
186
+
187
+
188
+ </div>
189
+
190
+
191
+ <div id="rdoc-debugging-section-dump" class="debugging-section">
192
+
193
+ <p>Disabled; run with --debug to generate this.</p>
194
+
195
+ </div>
196
+
197
+ <div id="validator-badges">
198
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
199
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
200
+ Rdoc Generator</a> 1.1.6</small>.</p>
201
+ </div>
202
+
203
+ </body>
204
+ </html>
205
+