Skip to content

Commit 54a95c7

Browse files
committed
Fixes (re-adds) the processor interface as per consensus in Issue #22
1 parent ddbcabf commit 54a95c7

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
package org.reactivestreams;
3+
4+
/**
5+
* A Processor represents a processing stage—which is both a {@link Subscriber}
6+
* and a {@link Publisher} and obeys the contracts of both.
7+
*/
8+
public interface Processor<T, R> extends Subscriber<T>, Publisher<R> {
9+
}

0 commit comments

Comments
 (0)