-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex-all.html
195 lines (195 loc) · 10.1 KB
/
index-all.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="sv">
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Index (reactive-streams 1.0.0 API)</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Index (reactive-streams 1.0.0 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="org/reactivestreams/package-summary.html">Package</a></li>
<li>Class</li>
<li><a href="overview-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?index-all.html" target="_top">Frames</a></li>
<li><a href="index-all.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="contentContainer"><a href="#I:C">C</a> <a href="#I:O">O</a> <a href="#I:P">P</a> <a href="#I:R">R</a> <a href="#I:S">S</a> <a name="I:C">
<!-- -->
</a>
<h2 class="title">C</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/reactivestreams/Subscription.html#cancel--">cancel()</a></span> - Method in interface org.reactivestreams.<a href="org/reactivestreams/Subscription.html" title="interface in org.reactivestreams">Subscription</a></dt>
<dd>
<div class="block">Request the <a href="org/reactivestreams/Publisher.html" title="interface in org.reactivestreams"><code>Publisher</code></a> to stop sending data and clean up resources.</div>
</dd>
</dl>
<a name="I:O">
<!-- -->
</a>
<h2 class="title">O</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/reactivestreams/Subscriber.html#onComplete--">onComplete()</a></span> - Method in interface org.reactivestreams.<a href="org/reactivestreams/Subscriber.html" title="interface in org.reactivestreams">Subscriber</a></dt>
<dd>
<div class="block">Successful terminal state.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/reactivestreams/Subscriber.html#onError-java.lang.Throwable-">onError(Throwable)</a></span> - Method in interface org.reactivestreams.<a href="org/reactivestreams/Subscriber.html" title="interface in org.reactivestreams">Subscriber</a></dt>
<dd>
<div class="block">Failed terminal state.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/reactivestreams/Subscriber.html#onNext-T-">onNext(T)</a></span> - Method in interface org.reactivestreams.<a href="org/reactivestreams/Subscriber.html" title="interface in org.reactivestreams">Subscriber</a></dt>
<dd>
<div class="block">Data notification sent by the <a href="org/reactivestreams/Publisher.html" title="interface in org.reactivestreams"><code>Publisher</code></a> in response to requests to <a href="org/reactivestreams/Subscription.html#request-long-"><code>request(long)</code></a>.</div>
</dd>
<dt><span class="memberNameLink"><a href="org/reactivestreams/Subscriber.html#onSubscribe-org.reactivestreams.Subscription-">onSubscribe(Subscription)</a></span> - Method in interface org.reactivestreams.<a href="org/reactivestreams/Subscriber.html" title="interface in org.reactivestreams">Subscriber</a></dt>
<dd>
<div class="block">Invoked after calling <a href="org/reactivestreams/Publisher.html#subscribe-org.reactivestreams.Subscriber-"><code>Publisher.subscribe(Subscriber)</code></a>.</div>
</dd>
<dt><a href="org/reactivestreams/package-summary.html">org.reactivestreams</a> - package org.reactivestreams</dt>
<dd> </dd>
</dl>
<a name="I:P">
<!-- -->
</a>
<h2 class="title">P</h2>
<dl>
<dt><a href="org/reactivestreams/Processor.html" title="interface in org.reactivestreams"><span class="typeNameLink">Processor</span></a><<a href="org/reactivestreams/Processor.html" title="type parameter in Processor">T</a>,<a href="org/reactivestreams/Processor.html" title="type parameter in Processor">R</a>> - Interface in <a href="org/reactivestreams/package-summary.html">org.reactivestreams</a></dt>
<dd>
<div class="block">A Processor represents a processing stage—which is both a <a href="org/reactivestreams/Subscriber.html" title="interface in org.reactivestreams"><code>Subscriber</code></a>
and a <a href="org/reactivestreams/Publisher.html" title="interface in org.reactivestreams"><code>Publisher</code></a> and obeys the contracts of both.</div>
</dd>
<dt><a href="org/reactivestreams/Publisher.html" title="interface in org.reactivestreams"><span class="typeNameLink">Publisher</span></a><<a href="org/reactivestreams/Publisher.html" title="type parameter in Publisher">T</a>> - Interface in <a href="org/reactivestreams/package-summary.html">org.reactivestreams</a></dt>
<dd>
<div class="block">A <a href="org/reactivestreams/Publisher.html" title="interface in org.reactivestreams"><code>Publisher</code></a> is a provider of a potentially unbounded number of sequenced elements, publishing them according to
the demand received from its <a href="org/reactivestreams/Subscriber.html" title="interface in org.reactivestreams"><code>Subscriber</code></a>(s).</div>
</dd>
</dl>
<a name="I:R">
<!-- -->
</a>
<h2 class="title">R</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/reactivestreams/Subscription.html#request-long-">request(long)</a></span> - Method in interface org.reactivestreams.<a href="org/reactivestreams/Subscription.html" title="interface in org.reactivestreams">Subscription</a></dt>
<dd>
<div class="block">No events will be sent by a <a href="org/reactivestreams/Publisher.html" title="interface in org.reactivestreams"><code>Publisher</code></a> until demand is signaled via this method.</div>
</dd>
</dl>
<a name="I:S">
<!-- -->
</a>
<h2 class="title">S</h2>
<dl>
<dt><span class="memberNameLink"><a href="org/reactivestreams/Publisher.html#subscribe-org.reactivestreams.Subscriber-">subscribe(Subscriber<? super T>)</a></span> - Method in interface org.reactivestreams.<a href="org/reactivestreams/Publisher.html" title="interface in org.reactivestreams">Publisher</a></dt>
<dd>
<div class="block">Request <a href="org/reactivestreams/Publisher.html" title="interface in org.reactivestreams"><code>Publisher</code></a> to start streaming data.</div>
</dd>
<dt><a href="org/reactivestreams/Subscriber.html" title="interface in org.reactivestreams"><span class="typeNameLink">Subscriber</span></a><<a href="org/reactivestreams/Subscriber.html" title="type parameter in Subscriber">T</a>> - Interface in <a href="org/reactivestreams/package-summary.html">org.reactivestreams</a></dt>
<dd>
<div class="block">Will receive call to <a href="org/reactivestreams/Subscriber.html#onSubscribe-org.reactivestreams.Subscription-"><code>Subscriber.onSubscribe(Subscription)</code></a> once after passing an instance of <a href="org/reactivestreams/Subscriber.html" title="interface in org.reactivestreams"><code>Subscriber</code></a> to <a href="org/reactivestreams/Publisher.html#subscribe-org.reactivestreams.Subscriber-"><code>Publisher.subscribe(Subscriber)</code></a>.</div>
</dd>
<dt><a href="org/reactivestreams/Subscription.html" title="interface in org.reactivestreams"><span class="typeNameLink">Subscription</span></a> - Interface in <a href="org/reactivestreams/package-summary.html">org.reactivestreams</a></dt>
<dd>
<div class="block">A <a href="org/reactivestreams/Subscription.html" title="interface in org.reactivestreams"><code>Subscription</code></a> represents a one-to-one lifecycle of a <a href="org/reactivestreams/Subscriber.html" title="interface in org.reactivestreams"><code>Subscriber</code></a> subscribing to a <a href="org/reactivestreams/Publisher.html" title="interface in org.reactivestreams"><code>Publisher</code></a>.</div>
</dd>
</dl>
<a href="#I:C">C</a> <a href="#I:O">O</a> <a href="#I:P">P</a> <a href="#I:R">R</a> <a href="#I:S">S</a> </div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="org/reactivestreams/package-summary.html">Package</a></li>
<li>Class</li>
<li><a href="overview-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?index-all.html" target="_top">Frames</a></li>
<li><a href="index-all.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>