jretlang 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (118) hide show
  1. data/.gitignore +3 -0
  2. data/Rakefile +33 -0
  3. data/VERSION +1 -0
  4. data/changelog +29 -0
  5. data/jretlang.gemspec +154 -0
  6. data/lib/jretlang/channel.rb +35 -0
  7. data/lib/jretlang/fiber.rb +15 -0
  8. data/lib/jretlang/latch.rb +10 -0
  9. data/lib/jretlang.rb +22 -0
  10. data/readme +1 -0
  11. data/test/unit/test_examples.rb +142 -0
  12. data/test/unit/unit_test_helper.rb +6 -0
  13. data/vendor/jetlang-0.2.0/jetlang-0.2.0-sources.jar +0 -0
  14. data/vendor/jetlang-0.2.0/site/apidocs/allclasses-frame.html +106 -0
  15. data/vendor/jetlang-0.2.0/site/apidocs/allclasses-noframe.html +106 -0
  16. data/vendor/jetlang-0.2.0/site/apidocs/constant-values.html +147 -0
  17. data/vendor/jetlang-0.2.0/site/apidocs/deprecated-list.html +147 -0
  18. data/vendor/jetlang-0.2.0/site/apidocs/help-doc.html +224 -0
  19. data/vendor/jetlang-0.2.0/site/apidocs/index-all.html +677 -0
  20. data/vendor/jetlang-0.2.0/site/apidocs/index.html +40 -0
  21. data/vendor/jetlang-0.2.0/site/apidocs/options +19 -0
  22. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/AsyncRequest.html +376 -0
  23. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/BaseSubscription.html +332 -0
  24. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/BatchSubscriber.html +303 -0
  25. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/Channel.html +207 -0
  26. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/ChannelSubscription.html +295 -0
  27. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/Converter.html +211 -0
  28. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/KeyedBatchSubscriber.html +307 -0
  29. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/LastSubscriber.html +304 -0
  30. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/MemoryChannel.html +391 -0
  31. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/MemoryRequestChannel.html +319 -0
  32. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/Publisher.html +219 -0
  33. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/Request.html +251 -0
  34. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/RequestChannel.html +264 -0
  35. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/Session.html +173 -0
  36. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/SessionClosed.html +230 -0
  37. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/Subscribable.html +230 -0
  38. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/Subscriber.html +243 -0
  39. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/SubscriberList.html +334 -0
  40. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/AsyncRequest.html +191 -0
  41. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/BaseSubscription.html +205 -0
  42. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/BatchSubscriber.html +145 -0
  43. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/Channel.html +181 -0
  44. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/ChannelSubscription.html +145 -0
  45. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/Converter.html +194 -0
  46. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/KeyedBatchSubscriber.html +145 -0
  47. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/LastSubscriber.html +145 -0
  48. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/MemoryChannel.html +145 -0
  49. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/MemoryRequestChannel.html +145 -0
  50. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/Publisher.html +197 -0
  51. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/Request.html +211 -0
  52. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/RequestChannel.html +240 -0
  53. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/Session.html +189 -0
  54. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/SessionClosed.html +193 -0
  55. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/Subscribable.html +237 -0
  56. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/Subscriber.html +197 -0
  57. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/SubscriberList.html +145 -0
  58. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/package-frame.html +76 -0
  59. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/package-summary.html +245 -0
  60. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/package-tree.html +172 -0
  61. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/package-use.html +237 -0
  62. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/BatchExecutor.html +219 -0
  63. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/BatchExecutorImpl.html +267 -0
  64. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/Callback.html +217 -0
  65. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/Disposable.html +219 -0
  66. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/DisposingExecutor.html +286 -0
  67. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/EventBuffer.html +352 -0
  68. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/EventReader.html +234 -0
  69. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/Filter.html +216 -0
  70. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/RunnableBlockingQueue.html +337 -0
  71. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/RunnableExecutor.html +225 -0
  72. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/RunnableExecutorImpl.html +404 -0
  73. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/Scheduler.html +280 -0
  74. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/SchedulerImpl.html +354 -0
  75. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/SynchronousDisposingExecutor.html +391 -0
  76. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/SynchronousExecutor.html +307 -0
  77. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/BatchExecutor.html +224 -0
  78. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/BatchExecutorImpl.html +145 -0
  79. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/Callback.html +499 -0
  80. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/Disposable.html +669 -0
  81. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/DisposingExecutor.html +440 -0
  82. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/EventBuffer.html +197 -0
  83. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/EventReader.html +206 -0
  84. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/Filter.html +219 -0
  85. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/RunnableBlockingQueue.html +145 -0
  86. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/RunnableExecutor.html +218 -0
  87. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/RunnableExecutorImpl.html +145 -0
  88. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/Scheduler.html +235 -0
  89. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/SchedulerImpl.html +145 -0
  90. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/SynchronousDisposingExecutor.html +145 -0
  91. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/SynchronousExecutor.html +145 -0
  92. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/package-frame.html +70 -0
  93. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/package-summary.html +226 -0
  94. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/package-tree.html +176 -0
  95. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/package-use.html +289 -0
  96. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/Fiber.html +266 -0
  97. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/FiberStub.ScheduledEvent.html +419 -0
  98. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/FiberStub.html +599 -0
  99. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/PoolFiberFactory.html +321 -0
  100. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/ThreadFiber.html +525 -0
  101. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/class-use/Fiber.html +346 -0
  102. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/class-use/FiberStub.ScheduledEvent.html +181 -0
  103. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/class-use/FiberStub.html +145 -0
  104. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/class-use/PoolFiberFactory.html +145 -0
  105. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/class-use/ThreadFiber.html +145 -0
  106. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/package-frame.html +50 -0
  107. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/package-summary.html +185 -0
  108. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/package-tree.html +172 -0
  109. data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/package-use.html +198 -0
  110. data/vendor/jetlang-0.2.0/site/apidocs/overview-frame.html +47 -0
  111. data/vendor/jetlang-0.2.0/site/apidocs/overview-summary.html +165 -0
  112. data/vendor/jetlang-0.2.0/site/apidocs/overview-tree.html +198 -0
  113. data/vendor/jetlang-0.2.0/site/apidocs/package-list +3 -0
  114. data/vendor/jetlang-0.2.0/site/apidocs/packages +3 -0
  115. data/vendor/jetlang-0.2.0/site/apidocs/resources/inherit.gif +0 -0
  116. data/vendor/jetlang-0.2.0/site/apidocs/stylesheet.css +29 -0
  117. data/vendor/jetlang-0.2.0.jar +0 -0
  118. metadata +172 -0
@@ -0,0 +1,289 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!--NewPage-->
3
+ <HTML>
4
+ <HEAD>
5
+ <!-- Generated by javadoc (build 1.6.0_15) on Sat Sep 05 11:49:22 CDT 2009 -->
6
+ <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
7
+ <TITLE>
8
+ Uses of Package org.jetlang.core (Jetlang 0.2.0 API)
9
+ </TITLE>
10
+
11
+ <META NAME="date" CONTENT="2009-09-05">
12
+
13
+ <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
14
+
15
+ <SCRIPT type="text/javascript">
16
+ function windowTitle()
17
+ {
18
+ if (location.href.indexOf('is-external=true') == -1) {
19
+ parent.document.title="Uses of Package org.jetlang.core (Jetlang 0.2.0 API)";
20
+ }
21
+ }
22
+ </SCRIPT>
23
+ <NOSCRIPT>
24
+ </NOSCRIPT>
25
+
26
+ </HEAD>
27
+
28
+ <BODY BGCOLOR="white" onload="windowTitle();">
29
+ <HR>
30
+
31
+
32
+ <!-- ========= START OF TOP NAVBAR ======= -->
33
+ <A NAME="navbar_top"><!-- --></A>
34
+ <A HREF="#skip-navbar_top" title="Skip navigation links"></A>
35
+ <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
36
+ <TR>
37
+ <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
38
+ <A NAME="navbar_top_firstrow"><!-- --></A>
39
+ <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
40
+ <TR ALIGN="center" VALIGN="top">
41
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
42
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
43
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
44
+ <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD>
45
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
46
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
47
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
48
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
49
+ </TR>
50
+ </TABLE>
51
+ </TD>
52
+ <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
53
+ </EM>
54
+ </TD>
55
+ </TR>
56
+
57
+ <TR>
58
+ <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
59
+ &nbsp;PREV&nbsp;
60
+ &nbsp;NEXT</FONT></TD>
61
+ <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
62
+ <A HREF="../../../index.html?org/jetlang/core/package-use.html" target="_top"><B>FRAMES</B></A> &nbsp;
63
+ &nbsp;<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A> &nbsp;
64
+ &nbsp;<SCRIPT type="text/javascript">
65
+ <!--
66
+ if(window==top) {
67
+ document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
68
+ }
69
+ //-->
70
+ </SCRIPT>
71
+ <NOSCRIPT>
72
+ <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
73
+ </NOSCRIPT>
74
+
75
+
76
+ </FONT></TD>
77
+ </TR>
78
+ </TABLE>
79
+ <A NAME="skip-navbar_top"></A>
80
+ <!-- ========= END OF TOP NAVBAR ========= -->
81
+
82
+ <HR>
83
+ <CENTER>
84
+ <H2>
85
+ <B>Uses of Package<br>org.jetlang.core</B></H2>
86
+ </CENTER>
87
+
88
+ <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
89
+ <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
90
+ <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
91
+ Packages that use <A HREF="../../../org/jetlang/core/package-summary.html">org.jetlang.core</A></FONT></TH>
92
+ </TR>
93
+ <TR BGCOLOR="white" CLASS="TableRowColor">
94
+ <TD><A HREF="#org.jetlang.channels"><B>org.jetlang.channels</B></A></TD>
95
+ <TD>&nbsp;&nbsp;</TD>
96
+ </TR>
97
+ <TR BGCOLOR="white" CLASS="TableRowColor">
98
+ <TD><A HREF="#org.jetlang.core"><B>org.jetlang.core</B></A></TD>
99
+ <TD>&nbsp;&nbsp;</TD>
100
+ </TR>
101
+ <TR BGCOLOR="white" CLASS="TableRowColor">
102
+ <TD><A HREF="#org.jetlang.fibers"><B>org.jetlang.fibers</B></A></TD>
103
+ <TD>&nbsp;&nbsp;</TD>
104
+ </TR>
105
+ </TABLE>
106
+ &nbsp;
107
+ <P>
108
+ <A NAME="org.jetlang.channels"><!-- --></A>
109
+ <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
110
+ <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
111
+ <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
112
+ Classes in <A HREF="../../../org/jetlang/core/package-summary.html">org.jetlang.core</A> used by <A HREF="../../../org/jetlang/channels/package-summary.html">org.jetlang.channels</A></FONT></TH>
113
+ </TR>
114
+ <TR BGCOLOR="white" CLASS="TableRowColor">
115
+ <TD><B><A HREF="../../../org/jetlang/core/class-use/Callback.html#org.jetlang.channels"><B>Callback</B></A></B>
116
+
117
+ <BR>
118
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Event callback.</TD>
119
+ </TR>
120
+ <TR BGCOLOR="white" CLASS="TableRowColor">
121
+ <TD><B><A HREF="../../../org/jetlang/core/class-use/Disposable.html#org.jetlang.channels"><B>Disposable</B></A></B>
122
+
123
+ <BR>
124
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Interface to represent an instance that requires explicit resource cleanup</TD>
125
+ </TR>
126
+ <TR BGCOLOR="white" CLASS="TableRowColor">
127
+ <TD><B><A HREF="../../../org/jetlang/core/class-use/DisposingExecutor.html#org.jetlang.channels"><B>DisposingExecutor</B></A></B>
128
+
129
+ <BR>
130
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;An <CODE>Executor</CODE> that can dispose other components in unison with itself.</TD>
131
+ </TR>
132
+ <TR BGCOLOR="white" CLASS="TableRowColor">
133
+ <TD><B><A HREF="../../../org/jetlang/core/class-use/Filter.html#org.jetlang.channels"><B>Filter</B></A></B>
134
+
135
+ <BR>
136
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Interface to represent a boolean filter for messages</TD>
137
+ </TR>
138
+ </TABLE>
139
+ &nbsp;
140
+ <P>
141
+ <A NAME="org.jetlang.core"><!-- --></A>
142
+ <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
143
+ <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
144
+ <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
145
+ Classes in <A HREF="../../../org/jetlang/core/package-summary.html">org.jetlang.core</A> used by <A HREF="../../../org/jetlang/core/package-summary.html">org.jetlang.core</A></FONT></TH>
146
+ </TR>
147
+ <TR BGCOLOR="white" CLASS="TableRowColor">
148
+ <TD><B><A HREF="../../../org/jetlang/core/class-use/BatchExecutor.html#org.jetlang.core"><B>BatchExecutor</B></A></B>
149
+
150
+ <BR>
151
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Event executor.</TD>
152
+ </TR>
153
+ <TR BGCOLOR="white" CLASS="TableRowColor">
154
+ <TD><B><A HREF="../../../org/jetlang/core/class-use/Disposable.html#org.jetlang.core"><B>Disposable</B></A></B>
155
+
156
+ <BR>
157
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Interface to represent an instance that requires explicit resource cleanup</TD>
158
+ </TR>
159
+ <TR BGCOLOR="white" CLASS="TableRowColor">
160
+ <TD><B><A HREF="../../../org/jetlang/core/class-use/DisposingExecutor.html#org.jetlang.core"><B>DisposingExecutor</B></A></B>
161
+
162
+ <BR>
163
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;An <CODE>Executor</CODE> that can dispose other components in unison with itself.</TD>
164
+ </TR>
165
+ <TR BGCOLOR="white" CLASS="TableRowColor">
166
+ <TD><B><A HREF="../../../org/jetlang/core/class-use/EventBuffer.html#org.jetlang.core"><B>EventBuffer</B></A></B>
167
+
168
+ <BR>
169
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;User: mrettig
170
+ Date: Aug 29, 2009</TD>
171
+ </TR>
172
+ <TR BGCOLOR="white" CLASS="TableRowColor">
173
+ <TD><B><A HREF="../../../org/jetlang/core/class-use/EventReader.html#org.jetlang.core"><B>EventReader</B></A></B>
174
+
175
+ <BR>
176
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;User: mrettig
177
+ Date: Aug 30, 2009</TD>
178
+ </TR>
179
+ <TR BGCOLOR="white" CLASS="TableRowColor">
180
+ <TD><B><A HREF="../../../org/jetlang/core/class-use/RunnableExecutor.html#org.jetlang.core"><B>RunnableExecutor</B></A></B>
181
+
182
+ <BR>
183
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Queues and executes events.</TD>
184
+ </TR>
185
+ <TR BGCOLOR="white" CLASS="TableRowColor">
186
+ <TD><B><A HREF="../../../org/jetlang/core/class-use/Scheduler.html#org.jetlang.core"><B>Scheduler</B></A></B>
187
+
188
+ <BR>
189
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Component that can schedule events to execute in the future.</TD>
190
+ </TR>
191
+ </TABLE>
192
+ &nbsp;
193
+ <P>
194
+ <A NAME="org.jetlang.fibers"><!-- --></A>
195
+ <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
196
+ <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
197
+ <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
198
+ Classes in <A HREF="../../../org/jetlang/core/package-summary.html">org.jetlang.core</A> used by <A HREF="../../../org/jetlang/fibers/package-summary.html">org.jetlang.fibers</A></FONT></TH>
199
+ </TR>
200
+ <TR BGCOLOR="white" CLASS="TableRowColor">
201
+ <TD><B><A HREF="../../../org/jetlang/core/class-use/BatchExecutor.html#org.jetlang.fibers"><B>BatchExecutor</B></A></B>
202
+
203
+ <BR>
204
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Event executor.</TD>
205
+ </TR>
206
+ <TR BGCOLOR="white" CLASS="TableRowColor">
207
+ <TD><B><A HREF="../../../org/jetlang/core/class-use/Disposable.html#org.jetlang.fibers"><B>Disposable</B></A></B>
208
+
209
+ <BR>
210
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Interface to represent an instance that requires explicit resource cleanup</TD>
211
+ </TR>
212
+ <TR BGCOLOR="white" CLASS="TableRowColor">
213
+ <TD><B><A HREF="../../../org/jetlang/core/class-use/DisposingExecutor.html#org.jetlang.fibers"><B>DisposingExecutor</B></A></B>
214
+
215
+ <BR>
216
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;An <CODE>Executor</CODE> that can dispose other components in unison with itself.</TD>
217
+ </TR>
218
+ <TR BGCOLOR="white" CLASS="TableRowColor">
219
+ <TD><B><A HREF="../../../org/jetlang/core/class-use/RunnableExecutor.html#org.jetlang.fibers"><B>RunnableExecutor</B></A></B>
220
+
221
+ <BR>
222
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Queues and executes events.</TD>
223
+ </TR>
224
+ <TR BGCOLOR="white" CLASS="TableRowColor">
225
+ <TD><B><A HREF="../../../org/jetlang/core/class-use/Scheduler.html#org.jetlang.fibers"><B>Scheduler</B></A></B>
226
+
227
+ <BR>
228
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Component that can schedule events to execute in the future.</TD>
229
+ </TR>
230
+ </TABLE>
231
+ &nbsp;
232
+ <P>
233
+ <HR>
234
+
235
+
236
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
237
+ <A NAME="navbar_bottom"><!-- --></A>
238
+ <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
239
+ <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
240
+ <TR>
241
+ <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
242
+ <A NAME="navbar_bottom_firstrow"><!-- --></A>
243
+ <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
244
+ <TR ALIGN="center" VALIGN="top">
245
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
246
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
247
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
248
+ <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD>
249
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
250
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
251
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
252
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
253
+ </TR>
254
+ </TABLE>
255
+ </TD>
256
+ <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
257
+ </EM>
258
+ </TD>
259
+ </TR>
260
+
261
+ <TR>
262
+ <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
263
+ &nbsp;PREV&nbsp;
264
+ &nbsp;NEXT</FONT></TD>
265
+ <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
266
+ <A HREF="../../../index.html?org/jetlang/core/package-use.html" target="_top"><B>FRAMES</B></A> &nbsp;
267
+ &nbsp;<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A> &nbsp;
268
+ &nbsp;<SCRIPT type="text/javascript">
269
+ <!--
270
+ if(window==top) {
271
+ document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
272
+ }
273
+ //-->
274
+ </SCRIPT>
275
+ <NOSCRIPT>
276
+ <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
277
+ </NOSCRIPT>
278
+
279
+
280
+ </FONT></TD>
281
+ </TR>
282
+ </TABLE>
283
+ <A NAME="skip-navbar_bottom"></A>
284
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
285
+
286
+ <HR>
287
+ Copyright &#169; 2009. All Rights Reserved.
288
+ </BODY>
289
+ </HTML>
@@ -0,0 +1,266 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!--NewPage-->
3
+ <HTML>
4
+ <HEAD>
5
+ <!-- Generated by javadoc (build 1.6.0_15) on Sat Sep 05 11:49:22 CDT 2009 -->
6
+ <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
7
+ <TITLE>
8
+ Fiber (Jetlang 0.2.0 API)
9
+ </TITLE>
10
+
11
+ <META NAME="date" CONTENT="2009-09-05">
12
+
13
+ <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
14
+
15
+ <SCRIPT type="text/javascript">
16
+ function windowTitle()
17
+ {
18
+ if (location.href.indexOf('is-external=true') == -1) {
19
+ parent.document.title="Fiber (Jetlang 0.2.0 API)";
20
+ }
21
+ }
22
+ </SCRIPT>
23
+ <NOSCRIPT>
24
+ </NOSCRIPT>
25
+
26
+ </HEAD>
27
+
28
+ <BODY BGCOLOR="white" onload="windowTitle();">
29
+ <HR>
30
+
31
+
32
+ <!-- ========= START OF TOP NAVBAR ======= -->
33
+ <A NAME="navbar_top"><!-- --></A>
34
+ <A HREF="#skip-navbar_top" title="Skip navigation links"></A>
35
+ <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
36
+ <TR>
37
+ <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
38
+ <A NAME="navbar_top_firstrow"><!-- --></A>
39
+ <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
40
+ <TR ALIGN="center" VALIGN="top">
41
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
42
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
43
+ <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
44
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Fiber.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>
45
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
46
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
47
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
48
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
49
+ </TR>
50
+ </TABLE>
51
+ </TD>
52
+ <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
53
+ </EM>
54
+ </TD>
55
+ </TR>
56
+
57
+ <TR>
58
+ <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
59
+ &nbsp;PREV CLASS&nbsp;
60
+ &nbsp;<A HREF="../../../org/jetlang/fibers/FiberStub.html" title="class in org.jetlang.fibers"><B>NEXT CLASS</B></A></FONT></TD>
61
+ <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
62
+ <A HREF="../../../index.html?org/jetlang/fibers/Fiber.html" target="_top"><B>FRAMES</B></A> &nbsp;
63
+ &nbsp;<A HREF="Fiber.html" target="_top"><B>NO FRAMES</B></A> &nbsp;
64
+ &nbsp;<SCRIPT type="text/javascript">
65
+ <!--
66
+ if(window==top) {
67
+ document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
68
+ }
69
+ //-->
70
+ </SCRIPT>
71
+ <NOSCRIPT>
72
+ <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
73
+ </NOSCRIPT>
74
+
75
+
76
+ </FONT></TD>
77
+ </TR>
78
+ <TR>
79
+ <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
80
+ SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
81
+ <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
82
+ DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
83
+ </TR>
84
+ </TABLE>
85
+ <A NAME="skip-navbar_top"></A>
86
+ <!-- ========= END OF TOP NAVBAR ========= -->
87
+
88
+ <HR>
89
+ <!-- ======== START OF CLASS DATA ======== -->
90
+ <H2>
91
+ <FONT SIZE="-1">
92
+ org.jetlang.fibers</FONT>
93
+ <BR>
94
+ Interface Fiber</H2>
95
+ <DL>
96
+ <DT><B>All Superinterfaces:</B> <DD><A HREF="../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A>, <A HREF="../../../org/jetlang/core/DisposingExecutor.html" title="interface in org.jetlang.core">DisposingExecutor</A>, java.util.concurrent.Executor, <A HREF="../../../org/jetlang/core/Scheduler.html" title="interface in org.jetlang.core">Scheduler</A></DD>
97
+ </DL>
98
+ <DL>
99
+ <DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../org/jetlang/fibers/FiberStub.html" title="class in org.jetlang.fibers">FiberStub</A>, <A HREF="../../../org/jetlang/fibers/ThreadFiber.html" title="class in org.jetlang.fibers">ThreadFiber</A></DD>
100
+ </DL>
101
+ <HR>
102
+ <DL>
103
+ <DT><PRE>public interface <B>Fiber</B><DT>extends <A HREF="../../../org/jetlang/core/DisposingExecutor.html" title="interface in org.jetlang.core">DisposingExecutor</A>, <A HREF="../../../org/jetlang/core/Scheduler.html" title="interface in org.jetlang.core">Scheduler</A></DL>
104
+ </PRE>
105
+
106
+ <P>
107
+ Fibers provide event queueing, scheduling, and full pub/sub capabilities when combined with a
108
+ <A HREF="../../../org/jetlang/channels/Channel.html" title="interface in org.jetlang.channels"><CODE>Channel</CODE></A>. Fibers can be backed by a dedicated thread (<A HREF="../../../org/jetlang/fibers/ThreadFiber.html" title="class in org.jetlang.fibers"><CODE>ThreadFiber</CODE></A>) or use
109
+ a thread pool (<A HREF="../../../org/jetlang/fibers/PoolFiberFactory.html" title="class in org.jetlang.fibers"><CODE>PoolFiberFactory</CODE></A>).
110
+ <p/>
111
+ Events executed by Fiber will be process sequentially.
112
+ <P>
113
+
114
+ <P>
115
+ <DL>
116
+ <DT><B>Author:</B></DT>
117
+ <DD>mrettig</DD>
118
+ </DL>
119
+ <HR>
120
+
121
+ <P>
122
+
123
+ <!-- ========== METHOD SUMMARY =========== -->
124
+
125
+ <A NAME="method_summary"><!-- --></A>
126
+ <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
127
+ <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
128
+ <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
129
+ <B>Method Summary</B></FONT></TH>
130
+ </TR>
131
+ <TR BGCOLOR="white" CLASS="TableRowColor">
132
+ <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
133
+ <CODE>&nbsp;void</CODE></FONT></TD>
134
+ <TD><CODE><B><A HREF="../../../org/jetlang/fibers/Fiber.html#start()">start</A></B>()</CODE>
135
+
136
+ <BR>
137
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Start consuming events</TD>
138
+ </TR>
139
+ </TABLE>
140
+ &nbsp;<A NAME="methods_inherited_from_class_org.jetlang.core.DisposingExecutor"><!-- --></A>
141
+ <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
142
+ <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
143
+ <TH ALIGN="left"><B>Methods inherited from interface org.jetlang.core.<A HREF="../../../org/jetlang/core/DisposingExecutor.html" title="interface in org.jetlang.core">DisposingExecutor</A></B></TH>
144
+ </TR>
145
+ <TR BGCOLOR="white" CLASS="TableRowColor">
146
+ <TD><CODE><A HREF="../../../org/jetlang/core/DisposingExecutor.html#add(org.jetlang.core.Disposable)">add</A>, <A HREF="../../../org/jetlang/core/DisposingExecutor.html#remove(org.jetlang.core.Disposable)">remove</A>, <A HREF="../../../org/jetlang/core/DisposingExecutor.html#size()">size</A></CODE></TD>
147
+ </TR>
148
+ </TABLE>
149
+ &nbsp;<A NAME="methods_inherited_from_class_java.util.concurrent.Executor"><!-- --></A>
150
+ <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
151
+ <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
152
+ <TH ALIGN="left"><B>Methods inherited from interface java.util.concurrent.Executor</B></TH>
153
+ </TR>
154
+ <TR BGCOLOR="white" CLASS="TableRowColor">
155
+ <TD><CODE>execute</CODE></TD>
156
+ </TR>
157
+ </TABLE>
158
+ &nbsp;<A NAME="methods_inherited_from_class_org.jetlang.core.Scheduler"><!-- --></A>
159
+ <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
160
+ <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
161
+ <TH ALIGN="left"><B>Methods inherited from interface org.jetlang.core.<A HREF="../../../org/jetlang/core/Scheduler.html" title="interface in org.jetlang.core">Scheduler</A></B></TH>
162
+ </TR>
163
+ <TR BGCOLOR="white" CLASS="TableRowColor">
164
+ <TD><CODE><A HREF="../../../org/jetlang/core/Scheduler.html#schedule(java.lang.Runnable, long, java.util.concurrent.TimeUnit)">schedule</A>, <A HREF="../../../org/jetlang/core/Scheduler.html#scheduleWithFixedDelay(java.lang.Runnable, long, long, java.util.concurrent.TimeUnit)">scheduleWithFixedDelay</A></CODE></TD>
165
+ </TR>
166
+ </TABLE>
167
+ &nbsp;<A NAME="methods_inherited_from_class_org.jetlang.core.Disposable"><!-- --></A>
168
+ <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
169
+ <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
170
+ <TH ALIGN="left"><B>Methods inherited from interface org.jetlang.core.<A HREF="../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></B></TH>
171
+ </TR>
172
+ <TR BGCOLOR="white" CLASS="TableRowColor">
173
+ <TD><CODE><A HREF="../../../org/jetlang/core/Disposable.html#dispose()">dispose</A></CODE></TD>
174
+ </TR>
175
+ </TABLE>
176
+ &nbsp;
177
+ <P>
178
+
179
+ <!-- ============ METHOD DETAIL ========== -->
180
+
181
+ <A NAME="method_detail"><!-- --></A>
182
+ <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
183
+ <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
184
+ <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
185
+ <B>Method Detail</B></FONT></TH>
186
+ </TR>
187
+ </TABLE>
188
+
189
+ <A NAME="start()"><!-- --></A><H3>
190
+ start</H3>
191
+ <PRE>
192
+ void <B>start</B>()</PRE>
193
+ <DL>
194
+ <DD>Start consuming events
195
+ <P>
196
+ <DD><DL>
197
+ </DL>
198
+ </DD>
199
+ <DD><DL>
200
+ </DL>
201
+ </DD>
202
+ </DL>
203
+ <!-- ========= END OF CLASS DATA ========= -->
204
+ <HR>
205
+
206
+
207
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
208
+ <A NAME="navbar_bottom"><!-- --></A>
209
+ <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
210
+ <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
211
+ <TR>
212
+ <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
213
+ <A NAME="navbar_bottom_firstrow"><!-- --></A>
214
+ <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
215
+ <TR ALIGN="center" VALIGN="top">
216
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
217
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
218
+ <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
219
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Fiber.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>
220
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
221
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
222
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
223
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
224
+ </TR>
225
+ </TABLE>
226
+ </TD>
227
+ <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
228
+ </EM>
229
+ </TD>
230
+ </TR>
231
+
232
+ <TR>
233
+ <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
234
+ &nbsp;PREV CLASS&nbsp;
235
+ &nbsp;<A HREF="../../../org/jetlang/fibers/FiberStub.html" title="class in org.jetlang.fibers"><B>NEXT CLASS</B></A></FONT></TD>
236
+ <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
237
+ <A HREF="../../../index.html?org/jetlang/fibers/Fiber.html" target="_top"><B>FRAMES</B></A> &nbsp;
238
+ &nbsp;<A HREF="Fiber.html" target="_top"><B>NO FRAMES</B></A> &nbsp;
239
+ &nbsp;<SCRIPT type="text/javascript">
240
+ <!--
241
+ if(window==top) {
242
+ document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
243
+ }
244
+ //-->
245
+ </SCRIPT>
246
+ <NOSCRIPT>
247
+ <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
248
+ </NOSCRIPT>
249
+
250
+
251
+ </FONT></TD>
252
+ </TR>
253
+ <TR>
254
+ <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
255
+ SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
256
+ <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
257
+ DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
258
+ </TR>
259
+ </TABLE>
260
+ <A NAME="skip-navbar_bottom"></A>
261
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
262
+
263
+ <HR>
264
+ Copyright &#169; 2009. All Rights Reserved.
265
+ </BODY>
266
+ </HTML>