Skip to content

Commit 95a0996

Browse files
committed
Merge pull request #58 from reactive-streams/wip-22-re-add-processor-√
Fixes (re-adds) the processor interface as per consensus in Issue #22
2 parents ddbcabf + 9c3bb17 commit 95a0996

File tree

1 file changed

+8
-0
lines changed

1 file changed

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

0 commit comments

Comments
 (0)