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.
- data/.gitignore +3 -0
- data/Rakefile +33 -0
- data/VERSION +1 -0
- data/changelog +29 -0
- data/jretlang.gemspec +154 -0
- data/lib/jretlang/channel.rb +35 -0
- data/lib/jretlang/fiber.rb +15 -0
- data/lib/jretlang/latch.rb +10 -0
- data/lib/jretlang.rb +22 -0
- data/readme +1 -0
- data/test/unit/test_examples.rb +142 -0
- data/test/unit/unit_test_helper.rb +6 -0
- data/vendor/jetlang-0.2.0/jetlang-0.2.0-sources.jar +0 -0
- data/vendor/jetlang-0.2.0/site/apidocs/allclasses-frame.html +106 -0
- data/vendor/jetlang-0.2.0/site/apidocs/allclasses-noframe.html +106 -0
- data/vendor/jetlang-0.2.0/site/apidocs/constant-values.html +147 -0
- data/vendor/jetlang-0.2.0/site/apidocs/deprecated-list.html +147 -0
- data/vendor/jetlang-0.2.0/site/apidocs/help-doc.html +224 -0
- data/vendor/jetlang-0.2.0/site/apidocs/index-all.html +677 -0
- data/vendor/jetlang-0.2.0/site/apidocs/index.html +40 -0
- data/vendor/jetlang-0.2.0/site/apidocs/options +19 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/AsyncRequest.html +376 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/BaseSubscription.html +332 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/BatchSubscriber.html +303 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/Channel.html +207 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/ChannelSubscription.html +295 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/Converter.html +211 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/KeyedBatchSubscriber.html +307 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/LastSubscriber.html +304 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/MemoryChannel.html +391 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/MemoryRequestChannel.html +319 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/Publisher.html +219 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/Request.html +251 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/RequestChannel.html +264 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/Session.html +173 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/SessionClosed.html +230 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/Subscribable.html +230 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/Subscriber.html +243 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/SubscriberList.html +334 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/AsyncRequest.html +191 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/BaseSubscription.html +205 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/BatchSubscriber.html +145 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/Channel.html +181 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/ChannelSubscription.html +145 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/Converter.html +194 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/KeyedBatchSubscriber.html +145 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/LastSubscriber.html +145 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/MemoryChannel.html +145 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/MemoryRequestChannel.html +145 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/Publisher.html +197 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/Request.html +211 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/RequestChannel.html +240 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/Session.html +189 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/SessionClosed.html +193 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/Subscribable.html +237 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/Subscriber.html +197 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/class-use/SubscriberList.html +145 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/package-frame.html +76 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/package-summary.html +245 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/package-tree.html +172 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/channels/package-use.html +237 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/BatchExecutor.html +219 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/BatchExecutorImpl.html +267 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/Callback.html +217 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/Disposable.html +219 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/DisposingExecutor.html +286 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/EventBuffer.html +352 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/EventReader.html +234 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/Filter.html +216 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/RunnableBlockingQueue.html +337 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/RunnableExecutor.html +225 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/RunnableExecutorImpl.html +404 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/Scheduler.html +280 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/SchedulerImpl.html +354 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/SynchronousDisposingExecutor.html +391 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/SynchronousExecutor.html +307 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/BatchExecutor.html +224 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/BatchExecutorImpl.html +145 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/Callback.html +499 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/Disposable.html +669 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/DisposingExecutor.html +440 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/EventBuffer.html +197 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/EventReader.html +206 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/Filter.html +219 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/RunnableBlockingQueue.html +145 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/RunnableExecutor.html +218 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/RunnableExecutorImpl.html +145 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/Scheduler.html +235 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/SchedulerImpl.html +145 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/SynchronousDisposingExecutor.html +145 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/class-use/SynchronousExecutor.html +145 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/package-frame.html +70 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/package-summary.html +226 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/package-tree.html +176 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/core/package-use.html +289 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/Fiber.html +266 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/FiberStub.ScheduledEvent.html +419 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/FiberStub.html +599 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/PoolFiberFactory.html +321 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/ThreadFiber.html +525 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/class-use/Fiber.html +346 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/class-use/FiberStub.ScheduledEvent.html +181 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/class-use/FiberStub.html +145 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/class-use/PoolFiberFactory.html +145 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/class-use/ThreadFiber.html +145 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/package-frame.html +50 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/package-summary.html +185 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/package-tree.html +172 -0
- data/vendor/jetlang-0.2.0/site/apidocs/org/jetlang/fibers/package-use.html +198 -0
- data/vendor/jetlang-0.2.0/site/apidocs/overview-frame.html +47 -0
- data/vendor/jetlang-0.2.0/site/apidocs/overview-summary.html +165 -0
- data/vendor/jetlang-0.2.0/site/apidocs/overview-tree.html +198 -0
- data/vendor/jetlang-0.2.0/site/apidocs/package-list +3 -0
- data/vendor/jetlang-0.2.0/site/apidocs/packages +3 -0
- data/vendor/jetlang-0.2.0/site/apidocs/resources/inherit.gif +0 -0
- data/vendor/jetlang-0.2.0/site/apidocs/stylesheet.css +29 -0
- data/vendor/jetlang-0.2.0.jar +0 -0
- metadata +172 -0
|
@@ -0,0 +1,669 @@
|
|
|
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 Interface org.jetlang.core.Disposable (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 Interface org.jetlang.core.Disposable (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> </TD>
|
|
42
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
43
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
44
|
+
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
45
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
46
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
47
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
48
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </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
|
+
PREV
|
|
60
|
+
NEXT</FONT></TD>
|
|
61
|
+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
62
|
+
<A HREF="../../../../index.html?org/jetlang/core//class-useDisposable.html" target="_top"><B>FRAMES</B></A>
|
|
63
|
+
<A HREF="Disposable.html" target="_top"><B>NO FRAMES</B></A>
|
|
64
|
+
<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 Interface<br>org.jetlang.core.Disposable</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/Disposable.html" title="interface in org.jetlang.core">Disposable</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> </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> </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> </TD>
|
|
104
|
+
</TR>
|
|
105
|
+
</TABLE>
|
|
106
|
+
|
|
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
|
+
Uses of <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A> in <A HREF="../../../../org/jetlang/channels/package-summary.html">org.jetlang.channels</A></FONT></TH>
|
|
113
|
+
</TR>
|
|
114
|
+
</TABLE>
|
|
115
|
+
|
|
116
|
+
<P>
|
|
117
|
+
|
|
118
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
119
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
|
120
|
+
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../org/jetlang/channels/package-summary.html">org.jetlang.channels</A> that return <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></FONT></TH>
|
|
121
|
+
</TR>
|
|
122
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
123
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
124
|
+
<CODE> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
125
|
+
<TD><CODE><B>RequestChannel.</B><B><A HREF="../../../../org/jetlang/channels/RequestChannel.html#publish(org.jetlang.core.DisposingExecutor, R, org.jetlang.core.Callback)">publish</A></B>(<A HREF="../../../../org/jetlang/core/DisposingExecutor.html" title="interface in org.jetlang.core">DisposingExecutor</A> fiber,
|
|
126
|
+
<A HREF="../../../../org/jetlang/channels/RequestChannel.html" title="type parameter in RequestChannel">R</A> request,
|
|
127
|
+
<A HREF="../../../../org/jetlang/core/Callback.html" title="interface in org.jetlang.core">Callback</A><<A HREF="../../../../org/jetlang/channels/RequestChannel.html" title="type parameter in RequestChannel">V</A>> reply)</CODE>
|
|
128
|
+
|
|
129
|
+
<BR>
|
|
130
|
+
</TD>
|
|
131
|
+
</TR>
|
|
132
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
133
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
134
|
+
<CODE> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
135
|
+
<TD><CODE><B>MemoryRequestChannel.</B><B><A HREF="../../../../org/jetlang/channels/MemoryRequestChannel.html#publish(org.jetlang.core.DisposingExecutor, R, org.jetlang.core.Callback)">publish</A></B>(<A HREF="../../../../org/jetlang/core/DisposingExecutor.html" title="interface in org.jetlang.core">DisposingExecutor</A> target,
|
|
136
|
+
<A HREF="../../../../org/jetlang/channels/MemoryRequestChannel.html" title="type parameter in MemoryRequestChannel">R</A> request,
|
|
137
|
+
<A HREF="../../../../org/jetlang/core/Callback.html" title="interface in org.jetlang.core">Callback</A><<A HREF="../../../../org/jetlang/channels/MemoryRequestChannel.html" title="type parameter in MemoryRequestChannel">V</A>> reply)</CODE>
|
|
138
|
+
|
|
139
|
+
<BR>
|
|
140
|
+
</TD>
|
|
141
|
+
</TR>
|
|
142
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
143
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
144
|
+
<CODE> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
145
|
+
<TD><CODE><B>AsyncRequest.</B><B><A HREF="../../../../org/jetlang/channels/AsyncRequest.html#publish(org.jetlang.channels.RequestChannel, R, org.jetlang.core.Callback)">publish</A></B>(<A HREF="../../../../org/jetlang/channels/RequestChannel.html" title="interface in org.jetlang.channels">RequestChannel</A><<A HREF="../../../../org/jetlang/channels/AsyncRequest.html" title="type parameter in AsyncRequest">R</A>,<A HREF="../../../../org/jetlang/channels/AsyncRequest.html" title="type parameter in AsyncRequest">V</A>> channel,
|
|
146
|
+
<A HREF="../../../../org/jetlang/channels/AsyncRequest.html" title="type parameter in AsyncRequest">R</A> req,
|
|
147
|
+
<A HREF="../../../../org/jetlang/core/Callback.html" title="interface in org.jetlang.core">Callback</A><java.util.List<<A HREF="../../../../org/jetlang/channels/AsyncRequest.html" title="type parameter in AsyncRequest">V</A>>> onResponse)</CODE>
|
|
148
|
+
|
|
149
|
+
<BR>
|
|
150
|
+
</TD>
|
|
151
|
+
</TR>
|
|
152
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
153
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
154
|
+
<CODE> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
155
|
+
<TD><CODE><B>RequestChannel.</B><B><A HREF="../../../../org/jetlang/channels/RequestChannel.html#subscribe(org.jetlang.core.DisposingExecutor, org.jetlang.core.Callback)">subscribe</A></B>(<A HREF="../../../../org/jetlang/core/DisposingExecutor.html" title="interface in org.jetlang.core">DisposingExecutor</A> fiber,
|
|
156
|
+
<A HREF="../../../../org/jetlang/core/Callback.html" title="interface in org.jetlang.core">Callback</A><<A HREF="../../../../org/jetlang/channels/Request.html" title="interface in org.jetlang.channels">Request</A><<A HREF="../../../../org/jetlang/channels/RequestChannel.html" title="type parameter in RequestChannel">R</A>,<A HREF="../../../../org/jetlang/channels/RequestChannel.html" title="type parameter in RequestChannel">V</A>>> onRequest)</CODE>
|
|
157
|
+
|
|
158
|
+
<BR>
|
|
159
|
+
</TD>
|
|
160
|
+
</TR>
|
|
161
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
162
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
163
|
+
<CODE> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
164
|
+
<TD><CODE><B>MemoryRequestChannel.</B><B><A HREF="../../../../org/jetlang/channels/MemoryRequestChannel.html#subscribe(org.jetlang.core.DisposingExecutor, org.jetlang.core.Callback)">subscribe</A></B>(<A HREF="../../../../org/jetlang/core/DisposingExecutor.html" title="interface in org.jetlang.core">DisposingExecutor</A> fiber,
|
|
165
|
+
<A HREF="../../../../org/jetlang/core/Callback.html" title="interface in org.jetlang.core">Callback</A><<A HREF="../../../../org/jetlang/channels/Request.html" title="interface in org.jetlang.channels">Request</A><<A HREF="../../../../org/jetlang/channels/MemoryRequestChannel.html" title="type parameter in MemoryRequestChannel">R</A>,<A HREF="../../../../org/jetlang/channels/MemoryRequestChannel.html" title="type parameter in MemoryRequestChannel">V</A>>> onRequest)</CODE>
|
|
166
|
+
|
|
167
|
+
<BR>
|
|
168
|
+
</TD>
|
|
169
|
+
</TR>
|
|
170
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
171
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
172
|
+
<CODE> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
173
|
+
<TD><CODE><B>RequestChannel.</B><B><A HREF="../../../../org/jetlang/channels/RequestChannel.html#subscribe(org.jetlang.core.DisposingExecutor, org.jetlang.core.Callback, org.jetlang.core.Callback)">subscribe</A></B>(<A HREF="../../../../org/jetlang/core/DisposingExecutor.html" title="interface in org.jetlang.core">DisposingExecutor</A> fiber,
|
|
174
|
+
<A HREF="../../../../org/jetlang/core/Callback.html" title="interface in org.jetlang.core">Callback</A><<A HREF="../../../../org/jetlang/channels/Request.html" title="interface in org.jetlang.channels">Request</A><<A HREF="../../../../org/jetlang/channels/RequestChannel.html" title="type parameter in RequestChannel">R</A>,<A HREF="../../../../org/jetlang/channels/RequestChannel.html" title="type parameter in RequestChannel">V</A>>> onRequest,
|
|
175
|
+
<A HREF="../../../../org/jetlang/core/Callback.html" title="interface in org.jetlang.core">Callback</A><<A HREF="../../../../org/jetlang/channels/SessionClosed.html" title="interface in org.jetlang.channels">SessionClosed</A><<A HREF="../../../../org/jetlang/channels/RequestChannel.html" title="type parameter in RequestChannel">R</A>>> onRequestEnd)</CODE>
|
|
176
|
+
|
|
177
|
+
<BR>
|
|
178
|
+
</TD>
|
|
179
|
+
</TR>
|
|
180
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
181
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
182
|
+
<CODE> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
183
|
+
<TD><CODE><B>MemoryRequestChannel.</B><B><A HREF="../../../../org/jetlang/channels/MemoryRequestChannel.html#subscribe(org.jetlang.core.DisposingExecutor, org.jetlang.core.Callback, org.jetlang.core.Callback)">subscribe</A></B>(<A HREF="../../../../org/jetlang/core/DisposingExecutor.html" title="interface in org.jetlang.core">DisposingExecutor</A> fiber,
|
|
184
|
+
<A HREF="../../../../org/jetlang/core/Callback.html" title="interface in org.jetlang.core">Callback</A><<A HREF="../../../../org/jetlang/channels/Request.html" title="interface in org.jetlang.channels">Request</A><<A HREF="../../../../org/jetlang/channels/MemoryRequestChannel.html" title="type parameter in MemoryRequestChannel">R</A>,<A HREF="../../../../org/jetlang/channels/MemoryRequestChannel.html" title="type parameter in MemoryRequestChannel">V</A>>> onRequest,
|
|
185
|
+
<A HREF="../../../../org/jetlang/core/Callback.html" title="interface in org.jetlang.core">Callback</A><<A HREF="../../../../org/jetlang/channels/SessionClosed.html" title="interface in org.jetlang.channels">SessionClosed</A><<A HREF="../../../../org/jetlang/channels/MemoryRequestChannel.html" title="type parameter in MemoryRequestChannel">R</A>>> onRequestEnd)</CODE>
|
|
186
|
+
|
|
187
|
+
<BR>
|
|
188
|
+
</TD>
|
|
189
|
+
</TR>
|
|
190
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
191
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
192
|
+
<CODE> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
193
|
+
<TD><CODE><B>Subscriber.</B><B><A HREF="../../../../org/jetlang/channels/Subscriber.html#subscribe(org.jetlang.core.DisposingExecutor, org.jetlang.core.Callback)">subscribe</A></B>(<A HREF="../../../../org/jetlang/core/DisposingExecutor.html" title="interface in org.jetlang.core">DisposingExecutor</A> executor,
|
|
194
|
+
<A HREF="../../../../org/jetlang/core/Callback.html" title="interface in org.jetlang.core">Callback</A><<A HREF="../../../../org/jetlang/channels/Subscriber.html" title="type parameter in Subscriber">T</A>> receive)</CODE>
|
|
195
|
+
|
|
196
|
+
<BR>
|
|
197
|
+
Subscribe to receive messages produced by this subscriber</TD>
|
|
198
|
+
</TR>
|
|
199
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
200
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
201
|
+
<CODE> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
202
|
+
<TD><CODE><B>MemoryChannel.</B><B><A HREF="../../../../org/jetlang/channels/MemoryChannel.html#subscribe(org.jetlang.core.DisposingExecutor, org.jetlang.core.Callback)">subscribe</A></B>(<A HREF="../../../../org/jetlang/core/DisposingExecutor.html" title="interface in org.jetlang.core">DisposingExecutor</A> queue,
|
|
203
|
+
<A HREF="../../../../org/jetlang/core/Callback.html" title="interface in org.jetlang.core">Callback</A><<A HREF="../../../../org/jetlang/channels/MemoryChannel.html" title="type parameter in MemoryChannel">T</A>> onReceive)</CODE>
|
|
204
|
+
|
|
205
|
+
<BR>
|
|
206
|
+
</TD>
|
|
207
|
+
</TR>
|
|
208
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
209
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
210
|
+
<CODE> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
211
|
+
<TD><CODE><B>Subscriber.</B><B><A HREF="../../../../org/jetlang/channels/Subscriber.html#subscribe(org.jetlang.channels.Subscribable)">subscribe</A></B>(<A HREF="../../../../org/jetlang/channels/Subscribable.html" title="interface in org.jetlang.channels">Subscribable</A><<A HREF="../../../../org/jetlang/channels/Subscriber.html" title="type parameter in Subscriber">T</A>> sub)</CODE>
|
|
212
|
+
|
|
213
|
+
<BR>
|
|
214
|
+
</TD>
|
|
215
|
+
</TR>
|
|
216
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
217
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
218
|
+
<CODE> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
219
|
+
<TD><CODE><B>MemoryChannel.</B><B><A HREF="../../../../org/jetlang/channels/MemoryChannel.html#subscribe(org.jetlang.channels.Subscribable)">subscribe</A></B>(<A HREF="../../../../org/jetlang/channels/Subscribable.html" title="interface in org.jetlang.channels">Subscribable</A><<A HREF="../../../../org/jetlang/channels/MemoryChannel.html" title="type parameter in MemoryChannel">T</A>> sub)</CODE>
|
|
220
|
+
|
|
221
|
+
<BR>
|
|
222
|
+
</TD>
|
|
223
|
+
</TR>
|
|
224
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
225
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
226
|
+
<CODE> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
227
|
+
<TD><CODE><B>MemoryChannel.</B><B><A HREF="../../../../org/jetlang/channels/MemoryChannel.html#subscribeOnProducerThread(org.jetlang.core.DisposingExecutor, org.jetlang.core.Callback)">subscribeOnProducerThread</A></B>(<A HREF="../../../../org/jetlang/core/DisposingExecutor.html" title="interface in org.jetlang.core">DisposingExecutor</A> queue,
|
|
228
|
+
<A HREF="../../../../org/jetlang/core/Callback.html" title="interface in org.jetlang.core">Callback</A><<A HREF="../../../../org/jetlang/channels/MemoryChannel.html" title="type parameter in MemoryChannel">T</A>> callbackOnQueue)</CODE>
|
|
229
|
+
|
|
230
|
+
<BR>
|
|
231
|
+
</TD>
|
|
232
|
+
</TR>
|
|
233
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
234
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
235
|
+
<CODE>static
|
|
236
|
+
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" SUMMARY="">
|
|
237
|
+
<TR ALIGN="right" VALIGN="">
|
|
238
|
+
<TD NOWRAP><FONT SIZE="-1">
|
|
239
|
+
<CODE><R,V> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
240
|
+
</TR>
|
|
241
|
+
</TABLE>
|
|
242
|
+
</CODE></FONT></TD>
|
|
243
|
+
<TD><CODE><B>AsyncRequest.</B><B><A HREF="../../../../org/jetlang/channels/AsyncRequest.html#withOneReply(org.jetlang.fibers.Fiber, org.jetlang.channels.RequestChannel, R, org.jetlang.core.Callback)">withOneReply</A></B>(<A HREF="../../../../org/jetlang/fibers/Fiber.html" title="interface in org.jetlang.fibers">Fiber</A> fiber,
|
|
244
|
+
<A HREF="../../../../org/jetlang/channels/RequestChannel.html" title="interface in org.jetlang.channels">RequestChannel</A><R,V> channel,
|
|
245
|
+
R req,
|
|
246
|
+
<A HREF="../../../../org/jetlang/core/Callback.html" title="interface in org.jetlang.core">Callback</A><V> onReply)</CODE>
|
|
247
|
+
|
|
248
|
+
<BR>
|
|
249
|
+
</TD>
|
|
250
|
+
</TR>
|
|
251
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
252
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
253
|
+
<CODE>static
|
|
254
|
+
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" SUMMARY="">
|
|
255
|
+
<TR ALIGN="right" VALIGN="">
|
|
256
|
+
<TD NOWRAP><FONT SIZE="-1">
|
|
257
|
+
<CODE><R,V> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
258
|
+
</TR>
|
|
259
|
+
</TABLE>
|
|
260
|
+
</CODE></FONT></TD>
|
|
261
|
+
<TD><CODE><B>AsyncRequest.</B><B><A HREF="../../../../org/jetlang/channels/AsyncRequest.html#withOneReply(org.jetlang.fibers.Fiber, org.jetlang.channels.RequestChannel, R, org.jetlang.core.Callback, long, java.util.concurrent.TimeUnit, java.lang.Runnable)">withOneReply</A></B>(<A HREF="../../../../org/jetlang/fibers/Fiber.html" title="interface in org.jetlang.fibers">Fiber</A> fiber,
|
|
262
|
+
<A HREF="../../../../org/jetlang/channels/RequestChannel.html" title="interface in org.jetlang.channels">RequestChannel</A><R,V> channel,
|
|
263
|
+
R req,
|
|
264
|
+
<A HREF="../../../../org/jetlang/core/Callback.html" title="interface in org.jetlang.core">Callback</A><V> onReply,
|
|
265
|
+
long timeout,
|
|
266
|
+
java.util.concurrent.TimeUnit unit,
|
|
267
|
+
java.lang.Runnable onTimeout)</CODE>
|
|
268
|
+
|
|
269
|
+
<BR>
|
|
270
|
+
</TD>
|
|
271
|
+
</TR>
|
|
272
|
+
</TABLE>
|
|
273
|
+
|
|
274
|
+
<P>
|
|
275
|
+
<A NAME="org.jetlang.core"><!-- --></A>
|
|
276
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
277
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
278
|
+
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
|
279
|
+
Uses of <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A> in <A HREF="../../../../org/jetlang/core/package-summary.html">org.jetlang.core</A></FONT></TH>
|
|
280
|
+
</TR>
|
|
281
|
+
</TABLE>
|
|
282
|
+
|
|
283
|
+
<P>
|
|
284
|
+
|
|
285
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
286
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
|
287
|
+
<TH ALIGN="left" COLSPAN="2">Subinterfaces of <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A> in <A HREF="../../../../org/jetlang/core/package-summary.html">org.jetlang.core</A></FONT></TH>
|
|
288
|
+
</TR>
|
|
289
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
290
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
291
|
+
<CODE> interface</CODE></FONT></TD>
|
|
292
|
+
<TD><CODE><B><A HREF="../../../../org/jetlang/core/RunnableExecutor.html" title="interface in org.jetlang.core">RunnableExecutor</A></B></CODE>
|
|
293
|
+
|
|
294
|
+
<BR>
|
|
295
|
+
Queues and executes events.</TD>
|
|
296
|
+
</TR>
|
|
297
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
298
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
299
|
+
<CODE> interface</CODE></FONT></TD>
|
|
300
|
+
<TD><CODE><B><A HREF="../../../../org/jetlang/core/Scheduler.html" title="interface in org.jetlang.core">Scheduler</A></B></CODE>
|
|
301
|
+
|
|
302
|
+
<BR>
|
|
303
|
+
Component that can schedule events to execute in the future.</TD>
|
|
304
|
+
</TR>
|
|
305
|
+
</TABLE>
|
|
306
|
+
|
|
307
|
+
<P>
|
|
308
|
+
|
|
309
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
310
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
|
311
|
+
<TH ALIGN="left" COLSPAN="2">Classes in <A HREF="../../../../org/jetlang/core/package-summary.html">org.jetlang.core</A> that implement <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></FONT></TH>
|
|
312
|
+
</TR>
|
|
313
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
314
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
315
|
+
<CODE> class</CODE></FONT></TD>
|
|
316
|
+
<TD><CODE><B><A HREF="../../../../org/jetlang/core/RunnableExecutorImpl.html" title="class in org.jetlang.core">RunnableExecutorImpl</A></B></CODE>
|
|
317
|
+
|
|
318
|
+
<BR>
|
|
319
|
+
Default implementation that queues and executes events.</TD>
|
|
320
|
+
</TR>
|
|
321
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
322
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
323
|
+
<CODE> class</CODE></FONT></TD>
|
|
324
|
+
<TD><CODE><B><A HREF="../../../../org/jetlang/core/SchedulerImpl.html" title="class in org.jetlang.core">SchedulerImpl</A></B></CODE>
|
|
325
|
+
|
|
326
|
+
<BR>
|
|
327
|
+
Default implementation for scheduling events for execution on fibers.</TD>
|
|
328
|
+
</TR>
|
|
329
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
330
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
331
|
+
<CODE> class</CODE></FONT></TD>
|
|
332
|
+
<TD><CODE><B><A HREF="../../../../org/jetlang/core/SynchronousDisposingExecutor.html" title="class in org.jetlang.core">SynchronousDisposingExecutor</A></B></CODE>
|
|
333
|
+
|
|
334
|
+
<BR>
|
|
335
|
+
A synchronous execute typically used for testing.</TD>
|
|
336
|
+
</TR>
|
|
337
|
+
</TABLE>
|
|
338
|
+
|
|
339
|
+
<P>
|
|
340
|
+
|
|
341
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
342
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
|
343
|
+
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../org/jetlang/core/package-summary.html">org.jetlang.core</A> that return <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></FONT></TH>
|
|
344
|
+
</TR>
|
|
345
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
346
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
347
|
+
<CODE> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
348
|
+
<TD><CODE><B>SchedulerImpl.</B><B><A HREF="../../../../org/jetlang/core/SchedulerImpl.html#schedule(java.lang.Runnable, long, java.util.concurrent.TimeUnit)">schedule</A></B>(java.lang.Runnable _command,
|
|
349
|
+
long delay,
|
|
350
|
+
java.util.concurrent.TimeUnit unit)</CODE>
|
|
351
|
+
|
|
352
|
+
<BR>
|
|
353
|
+
</TD>
|
|
354
|
+
</TR>
|
|
355
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
356
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
357
|
+
<CODE> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
358
|
+
<TD><CODE><B>Scheduler.</B><B><A HREF="../../../../org/jetlang/core/Scheduler.html#schedule(java.lang.Runnable, long, java.util.concurrent.TimeUnit)">schedule</A></B>(java.lang.Runnable command,
|
|
359
|
+
long delay,
|
|
360
|
+
java.util.concurrent.TimeUnit unit)</CODE>
|
|
361
|
+
|
|
362
|
+
<BR>
|
|
363
|
+
Creates and executes a one-shot action that becomes enabled after the given delay.</TD>
|
|
364
|
+
</TR>
|
|
365
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
366
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
367
|
+
<CODE> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
368
|
+
<TD><CODE><B>SchedulerImpl.</B><B><A HREF="../../../../org/jetlang/core/SchedulerImpl.html#scheduleWithFixedDelay(java.lang.Runnable, long, long, java.util.concurrent.TimeUnit)">scheduleWithFixedDelay</A></B>(java.lang.Runnable _command,
|
|
369
|
+
long initialDelay,
|
|
370
|
+
long interval,
|
|
371
|
+
java.util.concurrent.TimeUnit unit)</CODE>
|
|
372
|
+
|
|
373
|
+
<BR>
|
|
374
|
+
</TD>
|
|
375
|
+
</TR>
|
|
376
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
377
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
378
|
+
<CODE> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
379
|
+
<TD><CODE><B>Scheduler.</B><B><A HREF="../../../../org/jetlang/core/Scheduler.html#scheduleWithFixedDelay(java.lang.Runnable, long, long, java.util.concurrent.TimeUnit)">scheduleWithFixedDelay</A></B>(java.lang.Runnable command,
|
|
380
|
+
long initialDelay,
|
|
381
|
+
long delay,
|
|
382
|
+
java.util.concurrent.TimeUnit unit)</CODE>
|
|
383
|
+
|
|
384
|
+
<BR>
|
|
385
|
+
Creates and executes a periodic action that becomes enabled first
|
|
386
|
+
after the given initial delay, and subsequently with the
|
|
387
|
+
given delay between the termination of one execution and the
|
|
388
|
+
commencement of the next.</TD>
|
|
389
|
+
</TR>
|
|
390
|
+
</TABLE>
|
|
391
|
+
|
|
392
|
+
<P>
|
|
393
|
+
|
|
394
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
395
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
|
396
|
+
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../org/jetlang/core/package-summary.html">org.jetlang.core</A> with parameters of type <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></FONT></TH>
|
|
397
|
+
</TR>
|
|
398
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
399
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
400
|
+
<CODE> void</CODE></FONT></TD>
|
|
401
|
+
<TD><CODE><B>SynchronousDisposingExecutor.</B><B><A HREF="../../../../org/jetlang/core/SynchronousDisposingExecutor.html#add(org.jetlang.core.Disposable)">add</A></B>(<A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A> runOnStop)</CODE>
|
|
402
|
+
|
|
403
|
+
<BR>
|
|
404
|
+
</TD>
|
|
405
|
+
</TR>
|
|
406
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
407
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
408
|
+
<CODE> void</CODE></FONT></TD>
|
|
409
|
+
<TD><CODE><B>RunnableExecutorImpl.</B><B><A HREF="../../../../org/jetlang/core/RunnableExecutorImpl.html#add(org.jetlang.core.Disposable)">add</A></B>(<A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A> r)</CODE>
|
|
410
|
+
|
|
411
|
+
<BR>
|
|
412
|
+
</TD>
|
|
413
|
+
</TR>
|
|
414
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
415
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
416
|
+
<CODE> void</CODE></FONT></TD>
|
|
417
|
+
<TD><CODE><B>DisposingExecutor.</B><B><A HREF="../../../../org/jetlang/core/DisposingExecutor.html#add(org.jetlang.core.Disposable)">add</A></B>(<A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A> disposable)</CODE>
|
|
418
|
+
|
|
419
|
+
<BR>
|
|
420
|
+
Add a <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core"><CODE>Disposable</CODE></A> to be disposed when this component is disposed</TD>
|
|
421
|
+
</TR>
|
|
422
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
423
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
424
|
+
<CODE> boolean</CODE></FONT></TD>
|
|
425
|
+
<TD><CODE><B>SynchronousDisposingExecutor.</B><B><A HREF="../../../../org/jetlang/core/SynchronousDisposingExecutor.html#remove(org.jetlang.core.Disposable)">remove</A></B>(<A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A> disposable)</CODE>
|
|
426
|
+
|
|
427
|
+
<BR>
|
|
428
|
+
</TD>
|
|
429
|
+
</TR>
|
|
430
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
431
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
432
|
+
<CODE> boolean</CODE></FONT></TD>
|
|
433
|
+
<TD><CODE><B>RunnableExecutorImpl.</B><B><A HREF="../../../../org/jetlang/core/RunnableExecutorImpl.html#remove(org.jetlang.core.Disposable)">remove</A></B>(<A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A> disposable)</CODE>
|
|
434
|
+
|
|
435
|
+
<BR>
|
|
436
|
+
</TD>
|
|
437
|
+
</TR>
|
|
438
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
439
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
440
|
+
<CODE> boolean</CODE></FONT></TD>
|
|
441
|
+
<TD><CODE><B>DisposingExecutor.</B><B><A HREF="../../../../org/jetlang/core/DisposingExecutor.html#remove(org.jetlang.core.Disposable)">remove</A></B>(<A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A> disposable)</CODE>
|
|
442
|
+
|
|
443
|
+
<BR>
|
|
444
|
+
Remove a <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core"><CODE>Disposable</CODE></A> from being disposed when this component is disposed</TD>
|
|
445
|
+
</TR>
|
|
446
|
+
</TABLE>
|
|
447
|
+
|
|
448
|
+
<P>
|
|
449
|
+
<A NAME="org.jetlang.fibers"><!-- --></A>
|
|
450
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
451
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
452
|
+
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
|
453
|
+
Uses of <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A> in <A HREF="../../../../org/jetlang/fibers/package-summary.html">org.jetlang.fibers</A></FONT></TH>
|
|
454
|
+
</TR>
|
|
455
|
+
</TABLE>
|
|
456
|
+
|
|
457
|
+
<P>
|
|
458
|
+
|
|
459
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
460
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
|
461
|
+
<TH ALIGN="left" COLSPAN="2">Subinterfaces of <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A> in <A HREF="../../../../org/jetlang/fibers/package-summary.html">org.jetlang.fibers</A></FONT></TH>
|
|
462
|
+
</TR>
|
|
463
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
464
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
465
|
+
<CODE> interface</CODE></FONT></TD>
|
|
466
|
+
<TD><CODE><B><A HREF="../../../../org/jetlang/fibers/Fiber.html" title="interface in org.jetlang.fibers">Fiber</A></B></CODE>
|
|
467
|
+
|
|
468
|
+
<BR>
|
|
469
|
+
Fibers provide event queueing, scheduling, and full pub/sub capabilities when combined with a
|
|
470
|
+
<A HREF="../../../../org/jetlang/channels/Channel.html" title="interface in org.jetlang.channels"><CODE>Channel</CODE></A>.</TD>
|
|
471
|
+
</TR>
|
|
472
|
+
</TABLE>
|
|
473
|
+
|
|
474
|
+
<P>
|
|
475
|
+
|
|
476
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
477
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
|
478
|
+
<TH ALIGN="left" COLSPAN="2">Classes in <A HREF="../../../../org/jetlang/fibers/package-summary.html">org.jetlang.fibers</A> that implement <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></FONT></TH>
|
|
479
|
+
</TR>
|
|
480
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
481
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
482
|
+
<CODE> class</CODE></FONT></TD>
|
|
483
|
+
<TD><CODE><B><A HREF="../../../../org/jetlang/fibers/FiberStub.html" title="class in org.jetlang.fibers">FiberStub</A></B></CODE>
|
|
484
|
+
|
|
485
|
+
<BR>
|
|
486
|
+
Provides a deterministic fiber implementation for testing.</TD>
|
|
487
|
+
</TR>
|
|
488
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
489
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
490
|
+
<CODE> class</CODE></FONT></TD>
|
|
491
|
+
<TD><CODE><B><A HREF="../../../../org/jetlang/fibers/PoolFiberFactory.html" title="class in org.jetlang.fibers">PoolFiberFactory</A></B></CODE>
|
|
492
|
+
|
|
493
|
+
<BR>
|
|
494
|
+
Factory that creates <A HREF="../../../../org/jetlang/fibers/Fiber.html" title="interface in org.jetlang.fibers"><CODE>Fiber</CODE></A> instances that share threads.</TD>
|
|
495
|
+
</TR>
|
|
496
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
497
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
498
|
+
<CODE> class</CODE></FONT></TD>
|
|
499
|
+
<TD><CODE><B><A HREF="../../../../org/jetlang/fibers/ThreadFiber.html" title="class in org.jetlang.fibers">ThreadFiber</A></B></CODE>
|
|
500
|
+
|
|
501
|
+
<BR>
|
|
502
|
+
Fiber implementation backed by a dedicated thread for execution.</TD>
|
|
503
|
+
</TR>
|
|
504
|
+
</TABLE>
|
|
505
|
+
|
|
506
|
+
<P>
|
|
507
|
+
|
|
508
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
509
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
|
510
|
+
<TH ALIGN="left" COLSPAN="2">Fields in <A HREF="../../../../org/jetlang/fibers/package-summary.html">org.jetlang.fibers</A> with type parameters of type <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></FONT></TH>
|
|
511
|
+
</TR>
|
|
512
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
513
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
514
|
+
<CODE> java.util.List<<A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A>></CODE></FONT></TD>
|
|
515
|
+
<TD><CODE><B>FiberStub.</B><B><A HREF="../../../../org/jetlang/fibers/FiberStub.html#Disposables">Disposables</A></B></CODE>
|
|
516
|
+
|
|
517
|
+
<BR>
|
|
518
|
+
</TD>
|
|
519
|
+
</TR>
|
|
520
|
+
</TABLE>
|
|
521
|
+
|
|
522
|
+
<P>
|
|
523
|
+
|
|
524
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
525
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
|
526
|
+
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../org/jetlang/fibers/package-summary.html">org.jetlang.fibers</A> that return <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></FONT></TH>
|
|
527
|
+
</TR>
|
|
528
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
529
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
530
|
+
<CODE> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
531
|
+
<TD><CODE><B>ThreadFiber.</B><B><A HREF="../../../../org/jetlang/fibers/ThreadFiber.html#schedule(java.lang.Runnable, long, java.util.concurrent.TimeUnit)">schedule</A></B>(java.lang.Runnable command,
|
|
532
|
+
long delay,
|
|
533
|
+
java.util.concurrent.TimeUnit unit)</CODE>
|
|
534
|
+
|
|
535
|
+
<BR>
|
|
536
|
+
Schedule a Runnable to execute in the future.</TD>
|
|
537
|
+
</TR>
|
|
538
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
539
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
540
|
+
<CODE> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
541
|
+
<TD><CODE><B>FiberStub.</B><B><A HREF="../../../../org/jetlang/fibers/FiberStub.html#schedule(java.lang.Runnable, long, java.util.concurrent.TimeUnit)">schedule</A></B>(java.lang.Runnable runnable,
|
|
542
|
+
long l,
|
|
543
|
+
java.util.concurrent.TimeUnit timeUnit)</CODE>
|
|
544
|
+
|
|
545
|
+
<BR>
|
|
546
|
+
</TD>
|
|
547
|
+
</TR>
|
|
548
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
549
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
550
|
+
<CODE> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
551
|
+
<TD><CODE><B>ThreadFiber.</B><B><A HREF="../../../../org/jetlang/fibers/ThreadFiber.html#scheduleWithFixedDelay(java.lang.Runnable, long, long, java.util.concurrent.TimeUnit)">scheduleWithFixedDelay</A></B>(java.lang.Runnable command,
|
|
552
|
+
long initialDelay,
|
|
553
|
+
long delay,
|
|
554
|
+
java.util.concurrent.TimeUnit unit)</CODE>
|
|
555
|
+
|
|
556
|
+
<BR>
|
|
557
|
+
Schedule recurring event.</TD>
|
|
558
|
+
</TR>
|
|
559
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
560
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
561
|
+
<CODE> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></CODE></FONT></TD>
|
|
562
|
+
<TD><CODE><B>FiberStub.</B><B><A HREF="../../../../org/jetlang/fibers/FiberStub.html#scheduleWithFixedDelay(java.lang.Runnable, long, long, java.util.concurrent.TimeUnit)">scheduleWithFixedDelay</A></B>(java.lang.Runnable runnable,
|
|
563
|
+
long first,
|
|
564
|
+
long interval,
|
|
565
|
+
java.util.concurrent.TimeUnit timeUnit)</CODE>
|
|
566
|
+
|
|
567
|
+
<BR>
|
|
568
|
+
</TD>
|
|
569
|
+
</TR>
|
|
570
|
+
</TABLE>
|
|
571
|
+
|
|
572
|
+
<P>
|
|
573
|
+
|
|
574
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
575
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
|
|
576
|
+
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../org/jetlang/fibers/package-summary.html">org.jetlang.fibers</A> with parameters of type <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A></FONT></TH>
|
|
577
|
+
</TR>
|
|
578
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
579
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
580
|
+
<CODE> void</CODE></FONT></TD>
|
|
581
|
+
<TD><CODE><B>ThreadFiber.</B><B><A HREF="../../../../org/jetlang/fibers/ThreadFiber.html#add(org.jetlang.core.Disposable)">add</A></B>(<A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A> runOnStop)</CODE>
|
|
582
|
+
|
|
583
|
+
<BR>
|
|
584
|
+
</TD>
|
|
585
|
+
</TR>
|
|
586
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
587
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
588
|
+
<CODE> void</CODE></FONT></TD>
|
|
589
|
+
<TD><CODE><B>FiberStub.</B><B><A HREF="../../../../org/jetlang/fibers/FiberStub.html#add(org.jetlang.core.Disposable)">add</A></B>(<A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A> disposable)</CODE>
|
|
590
|
+
|
|
591
|
+
<BR>
|
|
592
|
+
</TD>
|
|
593
|
+
</TR>
|
|
594
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
595
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
596
|
+
<CODE> boolean</CODE></FONT></TD>
|
|
597
|
+
<TD><CODE><B>ThreadFiber.</B><B><A HREF="../../../../org/jetlang/fibers/ThreadFiber.html#remove(org.jetlang.core.Disposable)">remove</A></B>(<A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A> disposable)</CODE>
|
|
598
|
+
|
|
599
|
+
<BR>
|
|
600
|
+
</TD>
|
|
601
|
+
</TR>
|
|
602
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
603
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
604
|
+
<CODE> boolean</CODE></FONT></TD>
|
|
605
|
+
<TD><CODE><B>FiberStub.</B><B><A HREF="../../../../org/jetlang/fibers/FiberStub.html#remove(org.jetlang.core.Disposable)">remove</A></B>(<A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A> disposable)</CODE>
|
|
606
|
+
|
|
607
|
+
<BR>
|
|
608
|
+
</TD>
|
|
609
|
+
</TR>
|
|
610
|
+
</TABLE>
|
|
611
|
+
|
|
612
|
+
<P>
|
|
613
|
+
<HR>
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
617
|
+
<A NAME="navbar_bottom"><!-- --></A>
|
|
618
|
+
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
619
|
+
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
620
|
+
<TR>
|
|
621
|
+
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
622
|
+
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
623
|
+
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
624
|
+
<TR ALIGN="center" VALIGN="top">
|
|
625
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
626
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
627
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
|
|
628
|
+
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
|
|
629
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
630
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
631
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
632
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
633
|
+
</TR>
|
|
634
|
+
</TABLE>
|
|
635
|
+
</TD>
|
|
636
|
+
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
637
|
+
</EM>
|
|
638
|
+
</TD>
|
|
639
|
+
</TR>
|
|
640
|
+
|
|
641
|
+
<TR>
|
|
642
|
+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
643
|
+
PREV
|
|
644
|
+
NEXT</FONT></TD>
|
|
645
|
+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
646
|
+
<A HREF="../../../../index.html?org/jetlang/core//class-useDisposable.html" target="_top"><B>FRAMES</B></A>
|
|
647
|
+
<A HREF="Disposable.html" target="_top"><B>NO FRAMES</B></A>
|
|
648
|
+
<SCRIPT type="text/javascript">
|
|
649
|
+
<!--
|
|
650
|
+
if(window==top) {
|
|
651
|
+
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
652
|
+
}
|
|
653
|
+
//-->
|
|
654
|
+
</SCRIPT>
|
|
655
|
+
<NOSCRIPT>
|
|
656
|
+
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
657
|
+
</NOSCRIPT>
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
</FONT></TD>
|
|
661
|
+
</TR>
|
|
662
|
+
</TABLE>
|
|
663
|
+
<A NAME="skip-navbar_bottom"></A>
|
|
664
|
+
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
665
|
+
|
|
666
|
+
<HR>
|
|
667
|
+
Copyright © 2009. All Rights Reserved.
|
|
668
|
+
</BODY>
|
|
669
|
+
</HTML>
|