001package org.reactivestreams;
002
003/**
004 * A Processor represents a processing stage—which is both a {@link Subscriber}
005 * and a {@link Publisher} and obeys the contracts of both.
006 */
007public interface Processor<T, R> extends Subscriber<T>, Publisher<R> {
008}