Continue

case object Continue extends Signal
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
trait Signal
class Object
trait Matchable
class Any

Type members

Inherited types

type MirroredElemLabels = EmptyTuple
Inherited from:
Singleton
type MirroredElemTypes = EmptyTuple
Inherited from:
Singleton
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from:
Mirror
type MirroredMonoType = Singleton
Inherited from:
Singleton
type MirroredType = Singleton
Inherited from:
Singleton

Value members

Concrete methods

def isStop: Boolean

Inherited methods

def &&(that: Signal): Signal

Returns Signal.Stop if both this and that are the "stop" signal

Returns Signal.Stop if both this and that are the "stop" signal

Inherited from:
Signal
def fromProduct(p: Product): MirroredMonoType
Inherited from:
Singleton
def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product
def ||(that: => Signal): Signal

Returns Signal.Stop if at least one of this or that are the "stop" signal. Uses call-by-name semantics on that, to support short-circuiting evaluation in case this is known to be a Stop. E.g.

Returns Signal.Stop if at least one of this or that are the "stop" signal. Uses call-by-name semantics on that, to support short-circuiting evaluation in case this is known to be a Stop. E.g.

  out.push(1) || out.push(2)

Where if the out.push(1) call returns Stop, the out.push(2) expression will not be run.

Inherited from:
Signal