Skip to content

Commit 3e288a1

Browse files
rkuhnbenjchristensen
authored andcommitted
add binary artifact information to README
1 parent 50b2204 commit 3e288a1

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
The purpose of Reactive Streams is to provide a standard for asynchronous stream processing with non-blocking backpressure.
44

5+
The latest preview release is available on Maven Central as
6+
7+
<dependency>
8+
<groupId>org.reactivestreams</groupId>
9+
<artifactId>reactive-streams-spi</artifactId>
10+
<version>0.3</version>
11+
</dependency>
12+
<dependency>
13+
<groupId>org.reactivestreams</groupId>
14+
<artifactId>reactive-streams-tck</artifactId>
15+
<version>0.3</version>
16+
</dependency>
17+
518
## Goals, Design and Scope ##
619

720
Handling streams of data—especially “live” data whose volume is not predetermined—requires special care in an asynchronous system. The most prominent issue is that resource consumption needs to be carefully controlled such that a fast data source does not overwhelm the stream destination. Asynchrony is needed in order to enable the parallel use of computing resources, on collaborating network hosts or multiple CPU cores within a single machine.

0 commit comments

Comments
 (0)