jretlang 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,211 @@
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:21 CDT 2009 -->
6
+ <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
7
+ <TITLE>
8
+ Converter (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="Converter (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/Converter.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;<A HREF="../../../org/jetlang/channels/ChannelSubscription.html" title="class in org.jetlang.channels"><B>PREV CLASS</B></A>&nbsp;
60
+ &nbsp;<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="class in org.jetlang.channels"><B>NEXT CLASS</B></A></FONT></TD>
61
+ <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
62
+ <A HREF="../../../index.html?org/jetlang/channels/Converter.html" target="_top"><B>FRAMES</B></A> &nbsp;
63
+ &nbsp;<A HREF="Converter.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.channels</FONT>
93
+ <BR>
94
+ Interface Converter&lt;T,K&gt;</H2>
95
+ <HR>
96
+ <DL>
97
+ <DT><PRE>public interface <B>Converter&lt;T,K&gt;</B></DL>
98
+ </PRE>
99
+
100
+ <P>
101
+ Interface to convert from T to K.
102
+ <P>
103
+
104
+ <P>
105
+ <HR>
106
+
107
+ <P>
108
+
109
+ <!-- ========== METHOD SUMMARY =========== -->
110
+
111
+ <A NAME="method_summary"><!-- --></A>
112
+ <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
113
+ <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
114
+ <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
115
+ <B>Method Summary</B></FONT></TH>
116
+ </TR>
117
+ <TR BGCOLOR="white" CLASS="TableRowColor">
118
+ <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
119
+ <CODE>&nbsp;<A HREF="../../../org/jetlang/channels/Converter.html" title="type parameter in Converter">K</A></CODE></FONT></TD>
120
+ <TD><CODE><B><A HREF="../../../org/jetlang/channels/Converter.html#convert(T)">convert</A></B>(<A HREF="../../../org/jetlang/channels/Converter.html" title="type parameter in Converter">T</A>&nbsp;msg)</CODE>
121
+
122
+ <BR>
123
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
124
+ </TR>
125
+ </TABLE>
126
+ &nbsp;
127
+ <P>
128
+
129
+ <!-- ============ METHOD DETAIL ========== -->
130
+
131
+ <A NAME="method_detail"><!-- --></A>
132
+ <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
133
+ <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
134
+ <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
135
+ <B>Method Detail</B></FONT></TH>
136
+ </TR>
137
+ </TABLE>
138
+
139
+ <A NAME="convert(java.lang.Object)"><!-- --></A><A NAME="convert(T)"><!-- --></A><H3>
140
+ convert</H3>
141
+ <PRE>
142
+ <A HREF="../../../org/jetlang/channels/Converter.html" title="type parameter in Converter">K</A> <B>convert</B>(<A HREF="../../../org/jetlang/channels/Converter.html" title="type parameter in Converter">T</A>&nbsp;msg)</PRE>
143
+ <DL>
144
+ <DD><DL>
145
+ </DL>
146
+ </DD>
147
+ </DL>
148
+ <!-- ========= END OF CLASS DATA ========= -->
149
+ <HR>
150
+
151
+
152
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
153
+ <A NAME="navbar_bottom"><!-- --></A>
154
+ <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
155
+ <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
156
+ <TR>
157
+ <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
158
+ <A NAME="navbar_bottom_firstrow"><!-- --></A>
159
+ <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
160
+ <TR ALIGN="center" VALIGN="top">
161
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
162
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
163
+ <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
164
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Converter.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>
165
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
166
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
167
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
168
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
169
+ </TR>
170
+ </TABLE>
171
+ </TD>
172
+ <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
173
+ </EM>
174
+ </TD>
175
+ </TR>
176
+
177
+ <TR>
178
+ <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
179
+ &nbsp;<A HREF="../../../org/jetlang/channels/ChannelSubscription.html" title="class in org.jetlang.channels"><B>PREV CLASS</B></A>&nbsp;
180
+ &nbsp;<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="class in org.jetlang.channels"><B>NEXT CLASS</B></A></FONT></TD>
181
+ <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
182
+ <A HREF="../../../index.html?org/jetlang/channels/Converter.html" target="_top"><B>FRAMES</B></A> &nbsp;
183
+ &nbsp;<A HREF="Converter.html" target="_top"><B>NO FRAMES</B></A> &nbsp;
184
+ &nbsp;<SCRIPT type="text/javascript">
185
+ <!--
186
+ if(window==top) {
187
+ document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
188
+ }
189
+ //-->
190
+ </SCRIPT>
191
+ <NOSCRIPT>
192
+ <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
193
+ </NOSCRIPT>
194
+
195
+
196
+ </FONT></TD>
197
+ </TR>
198
+ <TR>
199
+ <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
200
+ SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
201
+ <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
202
+ DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
203
+ </TR>
204
+ </TABLE>
205
+ <A NAME="skip-navbar_bottom"></A>
206
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
207
+
208
+ <HR>
209
+ Copyright &#169; 2009. All Rights Reserved.
210
+ </BODY>
211
+ </HTML>
@@ -0,0 +1,307 @@
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:21 CDT 2009 -->
6
+ <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
7
+ <TITLE>
8
+ KeyedBatchSubscriber (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="KeyedBatchSubscriber (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/KeyedBatchSubscriber.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;<A HREF="../../../org/jetlang/channels/Converter.html" title="interface in org.jetlang.channels"><B>PREV CLASS</B></A>&nbsp;
60
+ &nbsp;<A HREF="../../../org/jetlang/channels/LastSubscriber.html" title="class in org.jetlang.channels"><B>NEXT CLASS</B></A></FONT></TD>
61
+ <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
62
+ <A HREF="../../../index.html?org/jetlang/channels/KeyedBatchSubscriber.html" target="_top"><B>FRAMES</B></A> &nbsp;
63
+ &nbsp;<A HREF="KeyedBatchSubscriber.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;<A HREF="#constructor_summary">CONSTR</A>&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;<A HREF="#constructor_detail">CONSTR</A>&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.channels</FONT>
93
+ <BR>
94
+ Class KeyedBatchSubscriber&lt;K,T&gt;</H2>
95
+ <PRE>
96
+ java.lang.Object
97
+ <IMG SRC="../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../org/jetlang/channels/BaseSubscription.html" title="class in org.jetlang.channels">org.jetlang.channels.BaseSubscription</A>&lt;T&gt;
98
+ <IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>org.jetlang.channels.KeyedBatchSubscriber&lt;K,T&gt;</B>
99
+ </PRE>
100
+ <DL>
101
+ <DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../org/jetlang/channels/Subscribable.html" title="interface in org.jetlang.channels">Subscribable</A>&lt;T&gt;, <A HREF="../../../org/jetlang/core/Callback.html" title="interface in org.jetlang.core">Callback</A>&lt;T&gt;</DD>
102
+ </DL>
103
+ <HR>
104
+ <DL>
105
+ <DT><PRE>public class <B>KeyedBatchSubscriber&lt;K,T&gt;</B><DT>extends <A HREF="../../../org/jetlang/channels/BaseSubscription.html" title="class in org.jetlang.channels">BaseSubscription</A>&lt;T&gt;</DL>
106
+ </PRE>
107
+
108
+ <P>
109
+ Channel subscription that drops duplicates based upon a key.
110
+ <P>
111
+
112
+ <P>
113
+ <HR>
114
+
115
+ <P>
116
+
117
+ <!-- ======== CONSTRUCTOR SUMMARY ======== -->
118
+
119
+ <A NAME="constructor_summary"><!-- --></A>
120
+ <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
121
+ <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
122
+ <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
123
+ <B>Constructor Summary</B></FONT></TH>
124
+ </TR>
125
+ <TR BGCOLOR="white" CLASS="TableRowColor">
126
+ <TD><CODE><B><A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html#KeyedBatchSubscriber(org.jetlang.fibers.Fiber, org.jetlang.core.Callback, org.jetlang.core.Filter, int, java.util.concurrent.TimeUnit, org.jetlang.channels.Converter)">KeyedBatchSubscriber</A></B>(<A HREF="../../../org/jetlang/fibers/Fiber.html" title="interface in org.jetlang.fibers">Fiber</A>&nbsp;context,
127
+ <A HREF="../../../org/jetlang/core/Callback.html" title="interface in org.jetlang.core">Callback</A>&lt;java.util.Map&lt;<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="type parameter in KeyedBatchSubscriber">K</A>,<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="type parameter in KeyedBatchSubscriber">T</A>&gt;&gt;&nbsp;target,
128
+ <A HREF="../../../org/jetlang/core/Filter.html" title="interface in org.jetlang.core">Filter</A>&lt;<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="type parameter in KeyedBatchSubscriber">T</A>&gt;&nbsp;filter,
129
+ int&nbsp;flushIntervalInMs,
130
+ java.util.concurrent.TimeUnit&nbsp;timeUnit,
131
+ <A HREF="../../../org/jetlang/channels/Converter.html" title="interface in org.jetlang.channels">Converter</A>&lt;<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="type parameter in KeyedBatchSubscriber">T</A>,<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="type parameter in KeyedBatchSubscriber">K</A>&gt;&nbsp;keyResolver)</CODE>
132
+
133
+ <BR>
134
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
135
+ </TR>
136
+ <TR BGCOLOR="white" CLASS="TableRowColor">
137
+ <TD><CODE><B><A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html#KeyedBatchSubscriber(org.jetlang.fibers.Fiber, org.jetlang.core.Callback, int, java.util.concurrent.TimeUnit, org.jetlang.channels.Converter)">KeyedBatchSubscriber</A></B>(<A HREF="../../../org/jetlang/fibers/Fiber.html" title="interface in org.jetlang.fibers">Fiber</A>&nbsp;context,
138
+ <A HREF="../../../org/jetlang/core/Callback.html" title="interface in org.jetlang.core">Callback</A>&lt;java.util.Map&lt;<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="type parameter in KeyedBatchSubscriber">K</A>,<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="type parameter in KeyedBatchSubscriber">T</A>&gt;&gt;&nbsp;target,
139
+ int&nbsp;flushIntervalInMs,
140
+ java.util.concurrent.TimeUnit&nbsp;timeUnit,
141
+ <A HREF="../../../org/jetlang/channels/Converter.html" title="interface in org.jetlang.channels">Converter</A>&lt;<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="type parameter in KeyedBatchSubscriber">T</A>,<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="type parameter in KeyedBatchSubscriber">K</A>&gt;&nbsp;keyResolver)</CODE>
142
+
143
+ <BR>
144
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
145
+ </TR>
146
+ </TABLE>
147
+ &nbsp;
148
+ <!-- ========== METHOD SUMMARY =========== -->
149
+
150
+ <A NAME="method_summary"><!-- --></A>
151
+ <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
152
+ <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
153
+ <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
154
+ <B>Method Summary</B></FONT></TH>
155
+ </TR>
156
+ <TR BGCOLOR="white" CLASS="TableRowColor">
157
+ <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
158
+ <CODE>protected &nbsp;void</CODE></FONT></TD>
159
+ <TD><CODE><B><A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html#onMessageOnProducerThread(T)">onMessageOnProducerThread</A></B>(<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="type parameter in KeyedBatchSubscriber">T</A>&nbsp;msg)</CODE>
160
+
161
+ <BR>
162
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Message received and batched on producer thread.</TD>
163
+ </TR>
164
+ </TABLE>
165
+ &nbsp;<A NAME="methods_inherited_from_class_org.jetlang.channels.BaseSubscription"><!-- --></A>
166
+ <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
167
+ <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
168
+ <TH ALIGN="left"><B>Methods inherited from class org.jetlang.channels.<A HREF="../../../org/jetlang/channels/BaseSubscription.html" title="class in org.jetlang.channels">BaseSubscription</A></B></TH>
169
+ </TR>
170
+ <TR BGCOLOR="white" CLASS="TableRowColor">
171
+ <TD><CODE><A HREF="../../../org/jetlang/channels/BaseSubscription.html#getQueue()">getQueue</A>, <A HREF="../../../org/jetlang/channels/BaseSubscription.html#onMessage(T)">onMessage</A></CODE></TD>
172
+ </TR>
173
+ </TABLE>
174
+ &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
175
+ <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
176
+ <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
177
+ <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
178
+ </TR>
179
+ <TR BGCOLOR="white" CLASS="TableRowColor">
180
+ <TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
181
+ </TR>
182
+ </TABLE>
183
+ &nbsp;
184
+ <P>
185
+
186
+ <!-- ========= CONSTRUCTOR DETAIL ======== -->
187
+
188
+ <A NAME="constructor_detail"><!-- --></A>
189
+ <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
190
+ <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
191
+ <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
192
+ <B>Constructor Detail</B></FONT></TH>
193
+ </TR>
194
+ </TABLE>
195
+
196
+ <A NAME="KeyedBatchSubscriber(org.jetlang.fibers.Fiber, org.jetlang.core.Callback, org.jetlang.core.Filter, int, java.util.concurrent.TimeUnit, org.jetlang.channels.Converter)"><!-- --></A><H3>
197
+ KeyedBatchSubscriber</H3>
198
+ <PRE>
199
+ public <B>KeyedBatchSubscriber</B>(<A HREF="../../../org/jetlang/fibers/Fiber.html" title="interface in org.jetlang.fibers">Fiber</A>&nbsp;context,
200
+ <A HREF="../../../org/jetlang/core/Callback.html" title="interface in org.jetlang.core">Callback</A>&lt;java.util.Map&lt;<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="type parameter in KeyedBatchSubscriber">K</A>,<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="type parameter in KeyedBatchSubscriber">T</A>&gt;&gt;&nbsp;target,
201
+ <A HREF="../../../org/jetlang/core/Filter.html" title="interface in org.jetlang.core">Filter</A>&lt;<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="type parameter in KeyedBatchSubscriber">T</A>&gt;&nbsp;filter,
202
+ int&nbsp;flushIntervalInMs,
203
+ java.util.concurrent.TimeUnit&nbsp;timeUnit,
204
+ <A HREF="../../../org/jetlang/channels/Converter.html" title="interface in org.jetlang.channels">Converter</A>&lt;<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="type parameter in KeyedBatchSubscriber">T</A>,<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="type parameter in KeyedBatchSubscriber">K</A>&gt;&nbsp;keyResolver)</PRE>
205
+ <DL>
206
+ </DL>
207
+ <HR>
208
+
209
+ <A NAME="KeyedBatchSubscriber(org.jetlang.fibers.Fiber, org.jetlang.core.Callback, int, java.util.concurrent.TimeUnit, org.jetlang.channels.Converter)"><!-- --></A><H3>
210
+ KeyedBatchSubscriber</H3>
211
+ <PRE>
212
+ public <B>KeyedBatchSubscriber</B>(<A HREF="../../../org/jetlang/fibers/Fiber.html" title="interface in org.jetlang.fibers">Fiber</A>&nbsp;context,
213
+ <A HREF="../../../org/jetlang/core/Callback.html" title="interface in org.jetlang.core">Callback</A>&lt;java.util.Map&lt;<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="type parameter in KeyedBatchSubscriber">K</A>,<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="type parameter in KeyedBatchSubscriber">T</A>&gt;&gt;&nbsp;target,
214
+ int&nbsp;flushIntervalInMs,
215
+ java.util.concurrent.TimeUnit&nbsp;timeUnit,
216
+ <A HREF="../../../org/jetlang/channels/Converter.html" title="interface in org.jetlang.channels">Converter</A>&lt;<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="type parameter in KeyedBatchSubscriber">T</A>,<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="type parameter in KeyedBatchSubscriber">K</A>&gt;&nbsp;keyResolver)</PRE>
217
+ <DL>
218
+ </DL>
219
+
220
+ <!-- ============ METHOD DETAIL ========== -->
221
+
222
+ <A NAME="method_detail"><!-- --></A>
223
+ <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
224
+ <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
225
+ <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
226
+ <B>Method Detail</B></FONT></TH>
227
+ </TR>
228
+ </TABLE>
229
+
230
+ <A NAME="onMessageOnProducerThread(java.lang.Object)"><!-- --></A><A NAME="onMessageOnProducerThread(T)"><!-- --></A><H3>
231
+ onMessageOnProducerThread</H3>
232
+ <PRE>
233
+ protected void <B>onMessageOnProducerThread</B>(<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="type parameter in KeyedBatchSubscriber">T</A>&nbsp;msg)</PRE>
234
+ <DL>
235
+ <DD>Message received and batched on producer thread.
236
+ <P>
237
+ <DD><DL>
238
+ <DT><B>Specified by:</B><DD><CODE><A HREF="../../../org/jetlang/channels/BaseSubscription.html#onMessageOnProducerThread(T)">onMessageOnProducerThread</A></CODE> in class <CODE><A HREF="../../../org/jetlang/channels/BaseSubscription.html" title="class in org.jetlang.channels">BaseSubscription</A>&lt;<A HREF="../../../org/jetlang/channels/KeyedBatchSubscriber.html" title="type parameter in KeyedBatchSubscriber">T</A>&gt;</CODE></DL>
239
+ </DD>
240
+ <DD><DL>
241
+ </DL>
242
+ </DD>
243
+ </DL>
244
+ <!-- ========= END OF CLASS DATA ========= -->
245
+ <HR>
246
+
247
+
248
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
249
+ <A NAME="navbar_bottom"><!-- --></A>
250
+ <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
251
+ <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
252
+ <TR>
253
+ <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
254
+ <A NAME="navbar_bottom_firstrow"><!-- --></A>
255
+ <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
256
+ <TR ALIGN="center" VALIGN="top">
257
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
258
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
259
+ <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
260
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/KeyedBatchSubscriber.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>
261
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
262
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
263
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
264
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
265
+ </TR>
266
+ </TABLE>
267
+ </TD>
268
+ <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
269
+ </EM>
270
+ </TD>
271
+ </TR>
272
+
273
+ <TR>
274
+ <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
275
+ &nbsp;<A HREF="../../../org/jetlang/channels/Converter.html" title="interface in org.jetlang.channels"><B>PREV CLASS</B></A>&nbsp;
276
+ &nbsp;<A HREF="../../../org/jetlang/channels/LastSubscriber.html" title="class in org.jetlang.channels"><B>NEXT CLASS</B></A></FONT></TD>
277
+ <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
278
+ <A HREF="../../../index.html?org/jetlang/channels/KeyedBatchSubscriber.html" target="_top"><B>FRAMES</B></A> &nbsp;
279
+ &nbsp;<A HREF="KeyedBatchSubscriber.html" target="_top"><B>NO FRAMES</B></A> &nbsp;
280
+ &nbsp;<SCRIPT type="text/javascript">
281
+ <!--
282
+ if(window==top) {
283
+ document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
284
+ }
285
+ //-->
286
+ </SCRIPT>
287
+ <NOSCRIPT>
288
+ <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
289
+ </NOSCRIPT>
290
+
291
+
292
+ </FONT></TD>
293
+ </TR>
294
+ <TR>
295
+ <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
296
+ SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
297
+ <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
298
+ DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
299
+ </TR>
300
+ </TABLE>
301
+ <A NAME="skip-navbar_bottom"></A>
302
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
303
+
304
+ <HR>
305
+ Copyright &#169; 2009. All Rights Reserved.
306
+ </BODY>
307
+ </HTML>