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

org.reactivestreams.Processor Maven / Gradle / Ivy

/************************************************************************
 * Licensed under Public Domain (CC0)                                    *
 *                                                                       *
 * To the extent possible under law, the person who associated CC0 with  *
 * this code has waived all copyright and related or neighboring         *
 * rights to this code.                                                  *
 *                                                                       *
 * You should have received a copy of the CC0 legalcode along with this  *
 * work. If not, see .*
 ************************************************************************/

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 - 2025 Weber Informatics LLC | Privacy Policy