Skip to content

Commit 8b8bb9e

Browse files
committed
update to 1.0.0 artifacts
1 parent 2f645b8 commit 8b8bb9e

File tree

139 files changed

+54475
-12
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+54475
-12
lines changed

_includes/index.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -44,47 +44,47 @@ This work is performed in the [reactive-streams-io](https://github.com/reactive-
4444

4545
## Current State
4646

47-
As of Apr 10, 2015 we have released version 1.0.0-RC5 of Reactive Streams for the JVM, including Java [API](http://www.reactive-streams.org/reactive-streams-1.0.0.RC5-javadoc), a textual [Specification](https://github.com/reactive-streams/reactive-streams-jvm/blob/v1.0.0.RC5/README.md#specification) and a [TCK](http://www.reactive-streams.org/reactive-streams-tck-1.0.0.RC5-javadoc). Corresponding code artifacts are available on Maven Central:
47+
As of April 30, 2015 we have released version 1.0.0 of Reactive Streams for the JVM, including Java [API](/reactive-streams-1.0.0-javadoc), a textual [Specification](https://github.com/reactive-streams/reactive-streams-jvm/blob/v1.0.0/README.md#specification), a [TCK](/reactive-streams-tck-1.0.0-javadoc) and [implementation examples](/reactive-streams-examples-1.0.0-javadoc). Corresponding code artifacts are available on Maven Central:
4848

4949
<dependency>
5050
<groupId>org.reactivestreams</groupId>
5151
<artifactId>reactive-streams</artifactId>
52-
<version>1.0.0.RC5</version>
52+
<version>1.0.0</version>
5353
</dependency>
5454
<dependency>
5555
<groupId>org.reactivestreams</groupId>
5656
<artifactId>reactive-streams-tck</artifactId>
57-
<version>1.0.0.RC5</version>
57+
<version>1.0.0</version>
5858
</dependency>
5959

60-
The source code for these is available on [github](https://github.com/reactive-streams/reactive-streams-jvm/tree/v1.0.0.RC5). Please use github issues for providing feedback.
60+
The source code for these is available on [github](https://github.com/reactive-streams/reactive-streams-jvm/tree/v1.0.0). Please use github issues for providing feedback.
6161

6262
All artifacts and specifications are released under [Creative Commons Zero](http://creativecommons.org/publicdomain/zero/1.0) into the Public Domain.
6363

6464
### Implementations (sorted alphabetically)
6565

6666
#### On the JVM
6767

68-
* [Akka](http://akka.io/) Streams *(tested with TCK 1.0.0.RC5)*
68+
* [Akka](http://akka.io/) Streams *(tested with TCK 1.0.0)*
6969
* See this [Activator template](http://www.typesafe.com/activator/template/akka-stream-scala) and the [documentation](http://doc.akka.io/docs/akka-stream-and-http-experimental/1.0-M5/index.html).
7070
* Please give [Feedback](http://doc.akka.io/docs/akka/current/project/issue-tracking.html) on the issue tracker.
71-
* [MongoDB](http://mongodb.org) *(tested with TCK 1.0.0.RC5)*
71+
* [MongoDB](http://mongodb.org) *(tested with TCK 1.0.0)*
7272
* For the documentation see [here](http://mongodb.github.io/mongo-java-driver-reactivestreams).
73-
* [Ratpack](http://www.ratpack.io) *(tested with TCK 1.0.0.RC5)*
73+
* [Ratpack](http://www.ratpack.io) *(tested with TCK 1.0.0)*
7474
* See the [“Streams”](http://www.ratpack.io/manual/current/streams.html) chapter of the manual.
7575
* Reactive Rabbit *(tested with TCK 1.0.0.RC3)*
7676
* Driver for RabbitMQ/AMQP.
7777
* See [github.com/ScalaConsultants/reactive-rabbit](https://github.com/ScalaConsultants/reactive-rabbit).
78-
* [Reactor](http://projectreactor.io/) *(tested with TCK 1.0.0.RC5)*
78+
* [Reactor](http://projectreactor.io/) *(tested with TCK 1.0.0)*
7979
* For the documentation see [here](http://projectreactor.io/docs/reference/streams.html).
80-
* [RxJava](http://reactivex.io/) *(tested with TCK 1.0.0.RC5)*
80+
* [RxJava](http://reactivex.io/) *(tested with TCK 1.0.0)*
8181
* See [github.com/ReactiveX/RxJavaReactiveStreams](https://github.com/ReactiveX/RxJavaReactiveStreams).
82-
* [Slick](http://slick.typesafe.com/) *(tested with TCK 1.0.0.RC5)*
82+
* [Slick](http://slick.typesafe.com/) *(tested with TCK 1.0.0)*
8383
* Provides a *Publisher* for streaming database query results.
8484
* See the ["Streaming"](http://slick.typesafe.com/doc/3.0.0-RC3/dbio.html#streaming) section of the manual.
85-
* [Vert.x 3.0](http://vertx.io) *(tested with TCK 1.0.0.RC5)*
85+
* [Vert.x 3.0](http://vertx.io) *(tested with TCK 1.0.0)*
8686
* Vert.x 3.0 is currently in alpha. The reactive streams implementation can be found [here](https://github.com/vert-x3/vertx-reactive-streams).
8787

8888
##### A Note for Implementors
8989

90-
To get started implementing the draft specification, it is recommended to start by reading the [README](https://github.com/reactive-streams/reactive-streams-jvm/blob/v1.0.0.RC5/README.md) and the [Java API documentation](http://www.reactive-streams.org/reactive-streams-1.0.0.RC5-javadoc), then taking a look at the [Specification](https://github.com/reactive-streams/reactive-streams-jvm/blob/v1.0.0.RC5/README.md#specification) then taking a look at the [TCK](https://github.com/reactive-streams/reactive-streams-jvm/tree/v1.0.0.RC5/tck). If you have an issue with any of the above, please take a look at [closed issues](https://github.com/reactive-streams/reactive-streams-jvm/issues?page=1&state=closed) and then open a [new issue](https://github.com/reactive-streams/reactive-streams-jvm/issues/new) if it has not already been answered.
90+
To get started implementing the draft specification, it is recommended to start by reading the [README](https://github.com/reactive-streams/reactive-streams-jvm/blob/v1.0.0/README.md) and the [Java API documentation](/reactive-streams-1.0.0-javadoc), then taking a look at the [Specification](https://github.com/reactive-streams/reactive-streams-jvm/blob/v1.0.0/README.md#specification) then taking a look at the [TCK](https://github.com/reactive-streams/reactive-streams-jvm/tree/v1.0.0/tck) and the [example implementations](https://github.com/reactive-streams/reactive-streams-jvm/tree/v1.0.0/examples/src/main/java/org/reactivestreams/example/unicast). If you have an issue with any of the above, please take a look at [closed issues](https://github.com/reactive-streams/reactive-streams-jvm/issues?page=1&state=closed) and then open a [new issue](https://github.com/reactive-streams/reactive-streams-jvm/issues/new) if it has not already been answered.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2+
<!-- NewPage -->
3+
<html lang="sv">
4+
<head>
5+
<!-- Generated by javadoc -->
6+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7+
<title>All Classes (reactive-streams 1.0.0 API)</title>
8+
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
9+
<script type="text/javascript" src="script.js"></script>
10+
</head>
11+
<body>
12+
<h1 class="bar">All&nbsp;Classes</h1>
13+
<div class="indexContainer">
14+
<ul>
15+
<li><a href="org/reactivestreams/Processor.html" title="interface in org.reactivestreams" target="classFrame"><span class="interfaceName">Processor</span></a></li>
16+
<li><a href="org/reactivestreams/Publisher.html" title="interface in org.reactivestreams" target="classFrame"><span class="interfaceName">Publisher</span></a></li>
17+
<li><a href="org/reactivestreams/Subscriber.html" title="interface in org.reactivestreams" target="classFrame"><span class="interfaceName">Subscriber</span></a></li>
18+
<li><a href="org/reactivestreams/Subscription.html" title="interface in org.reactivestreams" target="classFrame"><span class="interfaceName">Subscription</span></a></li>
19+
</ul>
20+
</div>
21+
</body>
22+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2+
<!-- NewPage -->
3+
<html lang="sv">
4+
<head>
5+
<!-- Generated by javadoc -->
6+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7+
<title>All Classes (reactive-streams 1.0.0 API)</title>
8+
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
9+
<script type="text/javascript" src="script.js"></script>
10+
</head>
11+
<body>
12+
<h1 class="bar">All&nbsp;Classes</h1>
13+
<div class="indexContainer">
14+
<ul>
15+
<li><a href="org/reactivestreams/Processor.html" title="interface in org.reactivestreams"><span class="interfaceName">Processor</span></a></li>
16+
<li><a href="org/reactivestreams/Publisher.html" title="interface in org.reactivestreams"><span class="interfaceName">Publisher</span></a></li>
17+
<li><a href="org/reactivestreams/Subscriber.html" title="interface in org.reactivestreams"><span class="interfaceName">Subscriber</span></a></li>
18+
<li><a href="org/reactivestreams/Subscription.html" title="interface in org.reactivestreams"><span class="interfaceName">Subscription</span></a></li>
19+
</ul>
20+
</div>
21+
</body>
22+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2+
<!-- NewPage -->
3+
<html lang="sv">
4+
<head>
5+
<!-- Generated by javadoc -->
6+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7+
<title>Constant Field Values (reactive-streams 1.0.0 API)</title>
8+
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
9+
<script type="text/javascript" src="script.js"></script>
10+
</head>
11+
<body>
12+
<script type="text/javascript"><!--
13+
try {
14+
if (location.href.indexOf('is-external=true') == -1) {
15+
parent.document.title="Constant Field Values (reactive-streams 1.0.0 API)";
16+
}
17+
}
18+
catch(err) {
19+
}
20+
//-->
21+
</script>
22+
<noscript>
23+
<div>JavaScript is disabled on your browser.</div>
24+
</noscript>
25+
<!-- ========= START OF TOP NAVBAR ======= -->
26+
<div class="topNav"><a name="navbar.top">
27+
<!-- -->
28+
</a>
29+
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
30+
<a name="navbar.top.firstrow">
31+
<!-- -->
32+
</a>
33+
<ul class="navList" title="Navigation">
34+
<li><a href="org/reactivestreams/package-summary.html">Package</a></li>
35+
<li>Class</li>
36+
<li><a href="overview-tree.html">Tree</a></li>
37+
<li><a href="deprecated-list.html">Deprecated</a></li>
38+
<li><a href="index-all.html">Index</a></li>
39+
<li><a href="help-doc.html">Help</a></li>
40+
</ul>
41+
</div>
42+
<div class="subNav">
43+
<ul class="navList">
44+
<li>Prev</li>
45+
<li>Next</li>
46+
</ul>
47+
<ul class="navList">
48+
<li><a href="index.html?constant-values.html" target="_top">Frames</a></li>
49+
<li><a href="constant-values.html" target="_top">No&nbsp;Frames</a></li>
50+
</ul>
51+
<ul class="navList" id="allclasses_navbar_top">
52+
<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
53+
</ul>
54+
<div>
55+
<script type="text/javascript"><!--
56+
allClassesLink = document.getElementById("allclasses_navbar_top");
57+
if(window==top) {
58+
allClassesLink.style.display = "block";
59+
}
60+
else {
61+
allClassesLink.style.display = "none";
62+
}
63+
//-->
64+
</script>
65+
</div>
66+
<a name="skip.navbar.top">
67+
<!-- -->
68+
</a></div>
69+
<!-- ========= END OF TOP NAVBAR ========= -->
70+
<div class="header">
71+
<h1 title="Constant Field Values" class="title">Constant Field Values</h1>
72+
<h2 title="Contents">Contents</h2>
73+
</div>
74+
<!-- ======= START OF BOTTOM NAVBAR ====== -->
75+
<div class="bottomNav"><a name="navbar.bottom">
76+
<!-- -->
77+
</a>
78+
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
79+
<a name="navbar.bottom.firstrow">
80+
<!-- -->
81+
</a>
82+
<ul class="navList" title="Navigation">
83+
<li><a href="org/reactivestreams/package-summary.html">Package</a></li>
84+
<li>Class</li>
85+
<li><a href="overview-tree.html">Tree</a></li>
86+
<li><a href="deprecated-list.html">Deprecated</a></li>
87+
<li><a href="index-all.html">Index</a></li>
88+
<li><a href="help-doc.html">Help</a></li>
89+
</ul>
90+
</div>
91+
<div class="subNav">
92+
<ul class="navList">
93+
<li>Prev</li>
94+
<li>Next</li>
95+
</ul>
96+
<ul class="navList">
97+
<li><a href="index.html?constant-values.html" target="_top">Frames</a></li>
98+
<li><a href="constant-values.html" target="_top">No&nbsp;Frames</a></li>
99+
</ul>
100+
<ul class="navList" id="allclasses_navbar_bottom">
101+
<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
102+
</ul>
103+
<div>
104+
<script type="text/javascript"><!--
105+
allClassesLink = document.getElementById("allclasses_navbar_bottom");
106+
if(window==top) {
107+
allClassesLink.style.display = "block";
108+
}
109+
else {
110+
allClassesLink.style.display = "none";
111+
}
112+
//-->
113+
</script>
114+
</div>
115+
<a name="skip.navbar.bottom">
116+
<!-- -->
117+
</a></div>
118+
<!-- ======== END OF BOTTOM NAVBAR ======= -->
119+
</body>
120+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2+
<!-- NewPage -->
3+
<html lang="sv">
4+
<head>
5+
<!-- Generated by javadoc -->
6+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7+
<title>Deprecated List (reactive-streams 1.0.0 API)</title>
8+
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
9+
<script type="text/javascript" src="script.js"></script>
10+
</head>
11+
<body>
12+
<script type="text/javascript"><!--
13+
try {
14+
if (location.href.indexOf('is-external=true') == -1) {
15+
parent.document.title="Deprecated List (reactive-streams 1.0.0 API)";
16+
}
17+
}
18+
catch(err) {
19+
}
20+
//-->
21+
</script>
22+
<noscript>
23+
<div>JavaScript is disabled on your browser.</div>
24+
</noscript>
25+
<!-- ========= START OF TOP NAVBAR ======= -->
26+
<div class="topNav"><a name="navbar.top">
27+
<!-- -->
28+
</a>
29+
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
30+
<a name="navbar.top.firstrow">
31+
<!-- -->
32+
</a>
33+
<ul class="navList" title="Navigation">
34+
<li><a href="org/reactivestreams/package-summary.html">Package</a></li>
35+
<li>Class</li>
36+
<li><a href="overview-tree.html">Tree</a></li>
37+
<li class="navBarCell1Rev">Deprecated</li>
38+
<li><a href="index-all.html">Index</a></li>
39+
<li><a href="help-doc.html">Help</a></li>
40+
</ul>
41+
</div>
42+
<div class="subNav">
43+
<ul class="navList">
44+
<li>Prev</li>
45+
<li>Next</li>
46+
</ul>
47+
<ul class="navList">
48+
<li><a href="index.html?deprecated-list.html" target="_top">Frames</a></li>
49+
<li><a href="deprecated-list.html" target="_top">No&nbsp;Frames</a></li>
50+
</ul>
51+
<ul class="navList" id="allclasses_navbar_top">
52+
<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
53+
</ul>
54+
<div>
55+
<script type="text/javascript"><!--
56+
allClassesLink = document.getElementById("allclasses_navbar_top");
57+
if(window==top) {
58+
allClassesLink.style.display = "block";
59+
}
60+
else {
61+
allClassesLink.style.display = "none";
62+
}
63+
//-->
64+
</script>
65+
</div>
66+
<a name="skip.navbar.top">
67+
<!-- -->
68+
</a></div>
69+
<!-- ========= END OF TOP NAVBAR ========= -->
70+
<div class="header">
71+
<h1 title="Deprecated API" class="title">Deprecated API</h1>
72+
<h2 title="Contents">Contents</h2>
73+
</div>
74+
<!-- ======= START OF BOTTOM NAVBAR ====== -->
75+
<div class="bottomNav"><a name="navbar.bottom">
76+
<!-- -->
77+
</a>
78+
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
79+
<a name="navbar.bottom.firstrow">
80+
<!-- -->
81+
</a>
82+
<ul class="navList" title="Navigation">
83+
<li><a href="org/reactivestreams/package-summary.html">Package</a></li>
84+
<li>Class</li>
85+
<li><a href="overview-tree.html">Tree</a></li>
86+
<li class="navBarCell1Rev">Deprecated</li>
87+
<li><a href="index-all.html">Index</a></li>
88+
<li><a href="help-doc.html">Help</a></li>
89+
</ul>
90+
</div>
91+
<div class="subNav">
92+
<ul class="navList">
93+
<li>Prev</li>
94+
<li>Next</li>
95+
</ul>
96+
<ul class="navList">
97+
<li><a href="index.html?deprecated-list.html" target="_top">Frames</a></li>
98+
<li><a href="deprecated-list.html" target="_top">No&nbsp;Frames</a></li>
99+
</ul>
100+
<ul class="navList" id="allclasses_navbar_bottom">
101+
<li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li>
102+
</ul>
103+
<div>
104+
<script type="text/javascript"><!--
105+
allClassesLink = document.getElementById("allclasses_navbar_bottom");
106+
if(window==top) {
107+
allClassesLink.style.display = "block";
108+
}
109+
else {
110+
allClassesLink.style.display = "none";
111+
}
112+
//-->
113+
</script>
114+
</div>
115+
<a name="skip.navbar.bottom">
116+
<!-- -->
117+
</a></div>
118+
<!-- ======== END OF BOTTOM NAVBAR ======= -->
119+
</body>
120+
</html>

0 commit comments

Comments
 (0)