object Yield
- Alphabetic
- By Inheritance
- Yield
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- final case class None[-I, +O, +E](status: Status[E], evolution: Evolution[I, O, E]) extends Yield[I, O, E] with Product with Serializable
A Yield that carries no output value.
A Yield that carries no output value.
This can occur when a stage decides not to emit a value for the current input (e.g. a filter stage that drops items). The pipeline still carries a Status and an Evolution so that processing can resume or terminate correctly.
When composing inside a Stage.AndThen, a
Nonefrom the first stage is forwarded without invoking the second stage; instead, the second stage is wired into the evolution so that it will be applied when the pipeline eventually resumes.- I
the input type for the evolution stages (contravariant)
- O
the (phantom) output type (covariant)
- E
the error type (covariant)
- status
the execution status
- evolution
the evolution strategy for re-processing
- final case class Some[-I, +O, +E](out: O, status: Status[E], evolution: Evolution[I, O, E]) extends Yield[I, O, E] with Product with Serializable
A Yield that carries an output value produced by the stage.
A Yield that carries an output value produced by the stage.
When composing two stages (see Stage.AndThen), if the first stage yields a
Some, its output is passed as input to the second stage and the two results are merged viacompose.- I
the input type for the evolution stages (contravariant)
- O
the output type (covariant)
- E
the error type (covariant)
- out
the output value produced by the stage
- status
the execution status
- evolution
the evolution strategy for re-processing
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)