All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.reactivestreams.Processor Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
package org.reactivestreams;

/**
 * A Processor represents a processing stage—which is both a {@link Subscriber}
 * and a {@link Publisher} and obeys the contracts of both.
 *
 * @param  the type of element signaled to the {@link Subscriber}
 * @param  the type of element signaled by the {@link Publisher}
 */
public interface Processor extends Subscriber, Publisher {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy