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.
1 parent ddbcabf commit 54a95c7Copy full SHA for 54a95c7
api/src/main/java/org/reactivestreams/Processor.java
@@ -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