We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddbcabf commit 9c3bb17Copy full SHA for 9c3bb17
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