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

org.reactivestreams.Processor.scala Maven / Gradle / Ivy

package org.reactivestreams

/** A Processor represents a processing stage—which is both a [[Subscriber]]
  * and a [[Publisher]] and obeys the contracts of both.
  *
  * @tparam T the type of element signaled to the [[Subscriber]]
  * @tparam R the type of element signaled by the [[Publisher]]
  */
trait Processor[T,R] extends Subscriber[T] with Publisher[R]




© 2015 - 2024 Weber Informatics LLC | Privacy Policy