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,219 @@
|
|
|
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
|
+
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="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="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
44
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Disposable.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </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
|
+
<A HREF="../../../org/jetlang/core/Callback.html" title="interface in org.jetlang.core"><B>PREV CLASS</B></A>
|
|
60
|
+
<A HREF="../../../org/jetlang/core/DisposingExecutor.html" title="interface in org.jetlang.core"><B>NEXT CLASS</B></A></FONT></TD>
|
|
61
|
+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
62
|
+
<A HREF="../../../index.html?org/jetlang/core/Disposable.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
|
+
<TR>
|
|
79
|
+
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
80
|
+
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
81
|
+
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
82
|
+
DETAIL: FIELD | CONSTR | <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.core</FONT>
|
|
93
|
+
<BR>
|
|
94
|
+
Interface Disposable</H2>
|
|
95
|
+
<DL>
|
|
96
|
+
<DT><B>All Known Subinterfaces:</B> <DD><A HREF="../../../org/jetlang/fibers/Fiber.html" title="interface in org.jetlang.fibers">Fiber</A>, <A HREF="../../../org/jetlang/core/RunnableExecutor.html" title="interface in org.jetlang.core">RunnableExecutor</A>, <A HREF="../../../org/jetlang/core/Scheduler.html" title="interface in org.jetlang.core">Scheduler</A></DD>
|
|
97
|
+
</DL>
|
|
98
|
+
<DL>
|
|
99
|
+
<DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../org/jetlang/fibers/FiberStub.html" title="class in org.jetlang.fibers">FiberStub</A>, <A HREF="../../../org/jetlang/fibers/PoolFiberFactory.html" title="class in org.jetlang.fibers">PoolFiberFactory</A>, <A HREF="../../../org/jetlang/core/RunnableExecutorImpl.html" title="class in org.jetlang.core">RunnableExecutorImpl</A>, <A HREF="../../../org/jetlang/core/SchedulerImpl.html" title="class in org.jetlang.core">SchedulerImpl</A>, <A HREF="../../../org/jetlang/core/SynchronousDisposingExecutor.html" title="class in org.jetlang.core">SynchronousDisposingExecutor</A>, <A HREF="../../../org/jetlang/fibers/ThreadFiber.html" title="class in org.jetlang.fibers">ThreadFiber</A></DD>
|
|
100
|
+
</DL>
|
|
101
|
+
<HR>
|
|
102
|
+
<DL>
|
|
103
|
+
<DT><PRE>public interface <B>Disposable</B></DL>
|
|
104
|
+
</PRE>
|
|
105
|
+
|
|
106
|
+
<P>
|
|
107
|
+
Interface to represent an instance that requires explicit resource cleanup
|
|
108
|
+
<P>
|
|
109
|
+
|
|
110
|
+
<P>
|
|
111
|
+
<HR>
|
|
112
|
+
|
|
113
|
+
<P>
|
|
114
|
+
|
|
115
|
+
<!-- ========== METHOD SUMMARY =========== -->
|
|
116
|
+
|
|
117
|
+
<A NAME="method_summary"><!-- --></A>
|
|
118
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
119
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
120
|
+
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
|
121
|
+
<B>Method Summary</B></FONT></TH>
|
|
122
|
+
</TR>
|
|
123
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
124
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
125
|
+
<CODE> void</CODE></FONT></TD>
|
|
126
|
+
<TD><CODE><B><A HREF="../../../org/jetlang/core/Disposable.html#dispose()">dispose</A></B>()</CODE>
|
|
127
|
+
|
|
128
|
+
<BR>
|
|
129
|
+
Dispose this instance.</TD>
|
|
130
|
+
</TR>
|
|
131
|
+
</TABLE>
|
|
132
|
+
|
|
133
|
+
<P>
|
|
134
|
+
|
|
135
|
+
<!-- ============ METHOD DETAIL ========== -->
|
|
136
|
+
|
|
137
|
+
<A NAME="method_detail"><!-- --></A>
|
|
138
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
139
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
140
|
+
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
|
141
|
+
<B>Method Detail</B></FONT></TH>
|
|
142
|
+
</TR>
|
|
143
|
+
</TABLE>
|
|
144
|
+
|
|
145
|
+
<A NAME="dispose()"><!-- --></A><H3>
|
|
146
|
+
dispose</H3>
|
|
147
|
+
<PRE>
|
|
148
|
+
void <B>dispose</B>()</PRE>
|
|
149
|
+
<DL>
|
|
150
|
+
<DD>Dispose this instance. It should be considered unusable after calling this method
|
|
151
|
+
<P>
|
|
152
|
+
<DD><DL>
|
|
153
|
+
</DL>
|
|
154
|
+
</DD>
|
|
155
|
+
</DL>
|
|
156
|
+
<!-- ========= END OF CLASS DATA ========= -->
|
|
157
|
+
<HR>
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
161
|
+
<A NAME="navbar_bottom"><!-- --></A>
|
|
162
|
+
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
163
|
+
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
164
|
+
<TR>
|
|
165
|
+
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
166
|
+
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
167
|
+
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
168
|
+
<TR ALIGN="center" VALIGN="top">
|
|
169
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
170
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
171
|
+
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
172
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Disposable.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
173
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
174
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
175
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
176
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
177
|
+
</TR>
|
|
178
|
+
</TABLE>
|
|
179
|
+
</TD>
|
|
180
|
+
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
181
|
+
</EM>
|
|
182
|
+
</TD>
|
|
183
|
+
</TR>
|
|
184
|
+
|
|
185
|
+
<TR>
|
|
186
|
+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
187
|
+
<A HREF="../../../org/jetlang/core/Callback.html" title="interface in org.jetlang.core"><B>PREV CLASS</B></A>
|
|
188
|
+
<A HREF="../../../org/jetlang/core/DisposingExecutor.html" title="interface in org.jetlang.core"><B>NEXT CLASS</B></A></FONT></TD>
|
|
189
|
+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
190
|
+
<A HREF="../../../index.html?org/jetlang/core/Disposable.html" target="_top"><B>FRAMES</B></A>
|
|
191
|
+
<A HREF="Disposable.html" target="_top"><B>NO FRAMES</B></A>
|
|
192
|
+
<SCRIPT type="text/javascript">
|
|
193
|
+
<!--
|
|
194
|
+
if(window==top) {
|
|
195
|
+
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
196
|
+
}
|
|
197
|
+
//-->
|
|
198
|
+
</SCRIPT>
|
|
199
|
+
<NOSCRIPT>
|
|
200
|
+
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
201
|
+
</NOSCRIPT>
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
</FONT></TD>
|
|
205
|
+
</TR>
|
|
206
|
+
<TR>
|
|
207
|
+
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
208
|
+
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
209
|
+
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
210
|
+
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
211
|
+
</TR>
|
|
212
|
+
</TABLE>
|
|
213
|
+
<A NAME="skip-navbar_bottom"></A>
|
|
214
|
+
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
215
|
+
|
|
216
|
+
<HR>
|
|
217
|
+
Copyright © 2009. All Rights Reserved.
|
|
218
|
+
</BODY>
|
|
219
|
+
</HTML>
|
|
@@ -0,0 +1,286 @@
|
|
|
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
|
+
DisposingExecutor (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="DisposingExecutor (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="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
44
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/DisposingExecutor.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </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
|
+
<A HREF="../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core"><B>PREV CLASS</B></A>
|
|
60
|
+
<A HREF="../../../org/jetlang/core/EventBuffer.html" title="class in org.jetlang.core"><B>NEXT CLASS</B></A></FONT></TD>
|
|
61
|
+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
62
|
+
<A HREF="../../../index.html?org/jetlang/core/DisposingExecutor.html" target="_top"><B>FRAMES</B></A>
|
|
63
|
+
<A HREF="DisposingExecutor.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
|
+
<TR>
|
|
79
|
+
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
80
|
+
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
81
|
+
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
82
|
+
DETAIL: FIELD | CONSTR | <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.core</FONT>
|
|
93
|
+
<BR>
|
|
94
|
+
Interface DisposingExecutor</H2>
|
|
95
|
+
<DL>
|
|
96
|
+
<DT><B>All Superinterfaces:</B> <DD>java.util.concurrent.Executor</DD>
|
|
97
|
+
</DL>
|
|
98
|
+
<DL>
|
|
99
|
+
<DT><B>All Known Subinterfaces:</B> <DD><A HREF="../../../org/jetlang/fibers/Fiber.html" title="interface in org.jetlang.fibers">Fiber</A>, <A HREF="../../../org/jetlang/core/RunnableExecutor.html" title="interface in org.jetlang.core">RunnableExecutor</A></DD>
|
|
100
|
+
</DL>
|
|
101
|
+
<DL>
|
|
102
|
+
<DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../org/jetlang/fibers/FiberStub.html" title="class in org.jetlang.fibers">FiberStub</A>, <A HREF="../../../org/jetlang/core/RunnableExecutorImpl.html" title="class in org.jetlang.core">RunnableExecutorImpl</A>, <A HREF="../../../org/jetlang/core/SynchronousDisposingExecutor.html" title="class in org.jetlang.core">SynchronousDisposingExecutor</A>, <A HREF="../../../org/jetlang/fibers/ThreadFiber.html" title="class in org.jetlang.fibers">ThreadFiber</A></DD>
|
|
103
|
+
</DL>
|
|
104
|
+
<HR>
|
|
105
|
+
<DL>
|
|
106
|
+
<DT><PRE>public interface <B>DisposingExecutor</B><DT>extends java.util.concurrent.Executor</DL>
|
|
107
|
+
</PRE>
|
|
108
|
+
|
|
109
|
+
<P>
|
|
110
|
+
An <CODE>Executor</CODE> that can dispose other components in unison with itself.
|
|
111
|
+
<P>
|
|
112
|
+
|
|
113
|
+
<P>
|
|
114
|
+
<HR>
|
|
115
|
+
|
|
116
|
+
<P>
|
|
117
|
+
|
|
118
|
+
<!-- ========== METHOD SUMMARY =========== -->
|
|
119
|
+
|
|
120
|
+
<A NAME="method_summary"><!-- --></A>
|
|
121
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
122
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
123
|
+
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
|
124
|
+
<B>Method Summary</B></FONT></TH>
|
|
125
|
+
</TR>
|
|
126
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
127
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
128
|
+
<CODE> void</CODE></FONT></TD>
|
|
129
|
+
<TD><CODE><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>
|
|
130
|
+
|
|
131
|
+
<BR>
|
|
132
|
+
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>
|
|
133
|
+
</TR>
|
|
134
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
135
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
136
|
+
<CODE> boolean</CODE></FONT></TD>
|
|
137
|
+
<TD><CODE><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>
|
|
138
|
+
|
|
139
|
+
<BR>
|
|
140
|
+
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>
|
|
141
|
+
</TR>
|
|
142
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
143
|
+
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
144
|
+
<CODE> int</CODE></FONT></TD>
|
|
145
|
+
<TD><CODE><B><A HREF="../../../org/jetlang/core/DisposingExecutor.html#size()">size</A></B>()</CODE>
|
|
146
|
+
|
|
147
|
+
<BR>
|
|
148
|
+
Return the number of <A HREF="../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core"><CODE>Disposable</CODE></A> instances registered with this instance.</TD>
|
|
149
|
+
</TR>
|
|
150
|
+
</TABLE>
|
|
151
|
+
<A NAME="methods_inherited_from_class_java.util.concurrent.Executor"><!-- --></A>
|
|
152
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
153
|
+
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
|
154
|
+
<TH ALIGN="left"><B>Methods inherited from interface java.util.concurrent.Executor</B></TH>
|
|
155
|
+
</TR>
|
|
156
|
+
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
157
|
+
<TD><CODE>execute</CODE></TD>
|
|
158
|
+
</TR>
|
|
159
|
+
</TABLE>
|
|
160
|
+
|
|
161
|
+
<P>
|
|
162
|
+
|
|
163
|
+
<!-- ============ METHOD DETAIL ========== -->
|
|
164
|
+
|
|
165
|
+
<A NAME="method_detail"><!-- --></A>
|
|
166
|
+
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
|
167
|
+
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
|
168
|
+
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
|
169
|
+
<B>Method Detail</B></FONT></TH>
|
|
170
|
+
</TR>
|
|
171
|
+
</TABLE>
|
|
172
|
+
|
|
173
|
+
<A NAME="add(org.jetlang.core.Disposable)"><!-- --></A><H3>
|
|
174
|
+
add</H3>
|
|
175
|
+
<PRE>
|
|
176
|
+
void <B>add</B>(<A HREF="../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A> disposable)</PRE>
|
|
177
|
+
<DL>
|
|
178
|
+
<DD>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
|
|
179
|
+
<P>
|
|
180
|
+
<DD><DL>
|
|
181
|
+
</DL>
|
|
182
|
+
</DD>
|
|
183
|
+
<DD><DL>
|
|
184
|
+
<DT><B>Parameters:</B><DD><CODE>disposable</CODE> - Disposable instance. Should not be null.</DL>
|
|
185
|
+
</DD>
|
|
186
|
+
</DL>
|
|
187
|
+
<HR>
|
|
188
|
+
|
|
189
|
+
<A NAME="remove(org.jetlang.core.Disposable)"><!-- --></A><H3>
|
|
190
|
+
remove</H3>
|
|
191
|
+
<PRE>
|
|
192
|
+
boolean <B>remove</B>(<A HREF="../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core">Disposable</A> disposable)</PRE>
|
|
193
|
+
<DL>
|
|
194
|
+
<DD>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
|
|
195
|
+
<P>
|
|
196
|
+
<DD><DL>
|
|
197
|
+
</DL>
|
|
198
|
+
</DD>
|
|
199
|
+
<DD><DL>
|
|
200
|
+
<DT><B>Parameters:</B><DD><CODE>disposable</CODE> - Disposable instance. Should not be null
|
|
201
|
+
<DT><B>Returns:</B><DD>True if the supplied Disposable was successfully removed. False if it wasn't available to be removed</DL>
|
|
202
|
+
</DD>
|
|
203
|
+
</DL>
|
|
204
|
+
<HR>
|
|
205
|
+
|
|
206
|
+
<A NAME="size()"><!-- --></A><H3>
|
|
207
|
+
size</H3>
|
|
208
|
+
<PRE>
|
|
209
|
+
int <B>size</B>()</PRE>
|
|
210
|
+
<DL>
|
|
211
|
+
<DD>Return the number of <A HREF="../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core"><CODE>Disposable</CODE></A> instances registered with this instance.
|
|
212
|
+
<p/>
|
|
213
|
+
This method is typically used for testing and debugging purposes.
|
|
214
|
+
<P>
|
|
215
|
+
<DD><DL>
|
|
216
|
+
</DL>
|
|
217
|
+
</DD>
|
|
218
|
+
<DD><DL>
|
|
219
|
+
|
|
220
|
+
<DT><B>Returns:</B><DD>Number of <A HREF="../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core"><CODE>Disposable</CODE></A> instances registered.</DL>
|
|
221
|
+
</DD>
|
|
222
|
+
</DL>
|
|
223
|
+
<!-- ========= END OF CLASS DATA ========= -->
|
|
224
|
+
<HR>
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
|
228
|
+
<A NAME="navbar_bottom"><!-- --></A>
|
|
229
|
+
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
|
230
|
+
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
|
231
|
+
<TR>
|
|
232
|
+
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
|
233
|
+
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
|
234
|
+
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
|
235
|
+
<TR ALIGN="center" VALIGN="top">
|
|
236
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
237
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
|
238
|
+
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
|
239
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/DisposingExecutor.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
|
|
240
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
|
241
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
|
242
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
|
243
|
+
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
|
244
|
+
</TR>
|
|
245
|
+
</TABLE>
|
|
246
|
+
</TD>
|
|
247
|
+
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
|
248
|
+
</EM>
|
|
249
|
+
</TD>
|
|
250
|
+
</TR>
|
|
251
|
+
|
|
252
|
+
<TR>
|
|
253
|
+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
254
|
+
<A HREF="../../../org/jetlang/core/Disposable.html" title="interface in org.jetlang.core"><B>PREV CLASS</B></A>
|
|
255
|
+
<A HREF="../../../org/jetlang/core/EventBuffer.html" title="class in org.jetlang.core"><B>NEXT CLASS</B></A></FONT></TD>
|
|
256
|
+
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
257
|
+
<A HREF="../../../index.html?org/jetlang/core/DisposingExecutor.html" target="_top"><B>FRAMES</B></A>
|
|
258
|
+
<A HREF="DisposingExecutor.html" target="_top"><B>NO FRAMES</B></A>
|
|
259
|
+
<SCRIPT type="text/javascript">
|
|
260
|
+
<!--
|
|
261
|
+
if(window==top) {
|
|
262
|
+
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
|
|
263
|
+
}
|
|
264
|
+
//-->
|
|
265
|
+
</SCRIPT>
|
|
266
|
+
<NOSCRIPT>
|
|
267
|
+
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
|
|
268
|
+
</NOSCRIPT>
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
</FONT></TD>
|
|
272
|
+
</TR>
|
|
273
|
+
<TR>
|
|
274
|
+
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
275
|
+
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
276
|
+
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
277
|
+
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
278
|
+
</TR>
|
|
279
|
+
</TABLE>
|
|
280
|
+
<A NAME="skip-navbar_bottom"></A>
|
|
281
|
+
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
282
|
+
|
|
283
|
+
<HR>
|
|
284
|
+
Copyright © 2009. All Rights Reserved.
|
|
285
|
+
</BODY>
|
|
286
|
+
</HTML>
|