org.reactivestreams.Processor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reactive-streams Show documentation
Show all versions of reactive-streams Show documentation
A Protocol for Asynchronous Non-Blocking Data Sequence
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