You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _includes/index.md
+12-12
Original file line number
Diff line number
Diff line change
@@ -44,47 +44,47 @@ This work is performed in the [reactive-streams-io](https://github.com/reactive-
44
44
45
45
## Current State
46
46
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:
48
48
49
49
<dependency>
50
50
<groupId>org.reactivestreams</groupId>
51
51
<artifactId>reactive-streams</artifactId>
52
-
<version>1.0.0.RC5</version>
52
+
<version>1.0.0</version>
53
53
</dependency>
54
54
<dependency>
55
55
<groupId>org.reactivestreams</groupId>
56
56
<artifactId>reactive-streams-tck</artifactId>
57
-
<version>1.0.0.RC5</version>
57
+
<version>1.0.0</version>
58
58
</dependency>
59
59
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.
61
61
62
62
All artifacts and specifications are released under [Creative Commons Zero](http://creativecommons.org/publicdomain/zero/1.0) into the Public Domain.
63
63
64
64
### Implementations (sorted alphabetically)
65
65
66
66
#### On the JVM
67
67
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)*
69
69
* 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).
70
70
* 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)*
72
72
* 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)*
74
74
* See the [“Streams”](http://www.ratpack.io/manual/current/streams.html) chapter of the manual.
75
75
* Reactive Rabbit *(tested with TCK 1.0.0.RC3)*
76
76
* Driver for RabbitMQ/AMQP.
77
77
* 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)*
79
79
* 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)*
81
81
* 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)*
83
83
* Provides a *Publisher* for streaming database query results.
84
84
* 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)*
86
86
* Vert.x 3.0 is currently in alpha. The reactive streams implementation can be found [here](https://github.com/vert-x3/vertx-reactive-streams).
87
87
88
88
##### A Note for Implementors
89
89
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.
<li><ahref="org/reactivestreams/Processor.html" title="interface in org.reactivestreams" target="classFrame"><spanclass="interfaceName">Processor</span></a></li>
16
+
<li><ahref="org/reactivestreams/Publisher.html" title="interface in org.reactivestreams" target="classFrame"><spanclass="interfaceName">Publisher</span></a></li>
17
+
<li><ahref="org/reactivestreams/Subscriber.html" title="interface in org.reactivestreams" target="classFrame"><spanclass="interfaceName">Subscriber</span></a></li>
18
+
<li><ahref="org/reactivestreams/Subscription.html" title="interface in org.reactivestreams" target="classFrame"><spanclass="interfaceName">Subscription</span></a></li>
0 commit comments