Skip to content

Commit bfcedb9

Browse files
committed
Merge pull request #265 from reactive-streams/wip-update-to-rc5-√
Updating documentation to reflect the current version: RC5
2 parents 3fd0867 + 6da1ccf commit bfcedb9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ The latest preview release is available on Maven Central as
88
<dependency>
99
<groupId>org.reactivestreams</groupId>
1010
<artifactId>reactive-streams</artifactId>
11-
<version>1.0.0.RC4</version>
11+
<version>1.0.0.RC5</version>
1212
</dependency>
1313
<dependency>
1414
<groupId>org.reactivestreams</groupId>
1515
<artifactId>reactive-streams-tck</artifactId>
16-
<version>1.0.0.RC4</version>
16+
<version>1.0.0.RC5</version>
1717
<scope>test</scope>
1818
</dependency>
1919
```
@@ -72,7 +72,7 @@ followed by a possibly unbounded number of `onNext` signals (as requested by `Su
7272

7373
### SPECIFICATION
7474

75-
#### 1. Publisher ([Code](https://github.com/reactive-streams/reactive-streams-jvm/blob/v1.0.0.RC4/api/src/main/java/org/reactivestreams/Publisher.java))
75+
#### 1. Publisher ([Code](https://github.com/reactive-streams/reactive-streams-jvm/blob/v1.0.0.RC5/api/src/main/java/org/reactivestreams/Publisher.java))
7676

7777
```java
7878
public interface Publisher<T> {
@@ -96,7 +96,7 @@ public interface Publisher<T> {
9696

9797
[<a name="footnote-1-1">1</a>] : A stateful Publisher can be overwhelmed, bounded by a finite number of underlying resources, exhausted, shut-down or in a failed state.
9898

99-
#### 2. Subscriber ([Code](https://github.com/reactive-streams/reactive-streams-jvm/blob/v1.0.0.RC4/api/src/main/java/org/reactivestreams/Subscriber.java))
99+
#### 2. Subscriber ([Code](https://github.com/reactive-streams/reactive-streams-jvm/blob/v1.0.0.RC5/api/src/main/java/org/reactivestreams/Subscriber.java))
100100

101101
```java
102102
public interface Subscriber<T> {
@@ -125,7 +125,7 @@ public interface Subscriber<T> {
125125
126126
[<a name="footnote-2-1">1</a>] : See JMM definition of Happen-Before in section 17.4.5. on http://docs.oracle.com/javase/specs/jls/se7/html/jls-17.html
127127
128-
#### 3. Subscription ([Code](https://github.com/reactive-streams/reactive-streams-jvm/blob/v1.0.0.RC4/api/src/main/java/org/reactivestreams/Subscription.java))
128+
#### 3. Subscription ([Code](https://github.com/reactive-streams/reactive-streams-jvm/blob/v1.0.0.RC5/api/src/main/java/org/reactivestreams/Subscription.java))
129129
130130
```java
131131
public interface Subscription {
@@ -162,7 +162,7 @@ public interface Subscription {
162162
163163
A `Subscription` is shared by exactly one `Publisher` and one `Subscriber` for the purpose of mediating the data exchange between this pair. This is the reason why the `subscribe()` method does not return the created `Subscription`, but instead returns `void`; the `Subscription` is only passed to the `Subscriber` via the `onSubscribe` callback.
164164
165-
#### 4.Processor ([Code](https://github.com/reactive-streams/reactive-streams-jvm/blob/v1.0.0.RC4/api/src/main/java/org/reactivestreams/Processor.java))
165+
#### 4.Processor ([Code](https://github.com/reactive-streams/reactive-streams-jvm/blob/v1.0.0.RC5/api/src/main/java/org/reactivestreams/Processor.java))
166166
167167
```java
168168
public interface Processor<T, R> extends Subscriber<T>, Publisher<R> {

tck/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The TCK is provided as binary artifact on [Maven Central](http://search.maven.or
2727
<dependency>
2828
<groupId>org.reactivestreams</groupId>
2929
<artifactId>reactive-streams-tck</artifactId>
30-
<version>1.0.0.RC4</version>
30+
<version>1.0.0.RC5</version>
3131
<scope>test</scope>
3232
</dependency>
3333
```

0 commit comments

Comments
 (0)