Skip to content

Commit 96a4a0a

Browse files
committed
Update README.md
Updating README.md to point to the 0.4.0 release for the interfaces
1 parent 7d47cb0 commit 96a4a0a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ onError | (onSubscribe onNext* (onError | onComplete)?)
6666

6767
### SPECIFICATION
6868

69-
#### 1. Publisher ([Code](https://github.com/reactive-streams/reactive-streams/blob/master/api/src/main/java/org/reactivestreams/Publisher.java))
69+
#### 1. Publisher ([Code](https://github.com/reactive-streams/reactive-streams/blob/v0.4.0/api/src/main/java/org/reactivestreams/Publisher.java))
7070

7171
```java
7272
public interface Publisher<T> {
@@ -92,7 +92,7 @@ public interface Publisher<T> {
9292
9393
[1] : A stateful Publisher can be overwhelmed, bounded by a finite number of underlying resources, exhausted, shut-down or in a failed state.
9494
95-
#### 2. Subscriber ([Code](https://github.com/reactive-streams/reactive-streams/blob/master/api/src/main/java/org/reactivestreams/Subscriber.java))
95+
#### 2. Subscriber ([Code](https://github.com/reactive-streams/reactive-streams/blob/v0.4.0/api/src/main/java/org/reactivestreams/Subscriber.java))
9696
9797
```java
9898
public interface Subscriber<T> {
@@ -122,7 +122,7 @@ public interface Subscriber<T> {
122122

123123
[1] : See JMM definition of Happen-Before in section 17.4.5. on http://docs.oracle.com/javase/specs/jls/se7/html/jls-17.html
124124

125-
#### 3. Subscription ([Code](https://github.com/reactive-streams/reactive-streams/blob/master/api/src/main/java/org/reactivestreams/Subscription.java))
125+
#### 3. Subscription ([Code](https://github.com/reactive-streams/reactive-streams/blob/v0.4.0/api/src/main/java/org/reactivestreams/Subscription.java))
126126

127127
```java
128128
public interface Subscription {
@@ -155,7 +155,7 @@ public interface Subscription {
155155
156156
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.
157157
158-
#### 4.Processor ([Code](https://github.com/reactive-streams/reactive-streams/blob/master/api/src/main/java/org/reactivestreams/Processor.java))
158+
#### 4.Processor ([Code](https://github.com/reactive-streams/reactive-streams/blob/v0.4.0/api/src/main/java/org/reactivestreams/Processor.java))
159159
160160
```java
161161
public interface Processor<T, R> extends Subscriber<T>, Publisher<R> {

0 commit comments

Comments
 (0)