We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ddbcabf + 9c3bb17 commit 95a0996Copy full SHA for 95a0996
api/src/main/java/org/reactivestreams/Processor.java
@@ -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