Result

final case class Result[Prod, Repr](processor: Repr, value: Try[Prod]) extends Update[Prod, Repr]

An update indicating that the process has terminated.

An update indicating that the process has terminated.

Value Params
processor

the processor that dispatched the update

value

the result which is either a Success or a Failure

trait Serializable
trait Product
trait Equals
trait Update[Prod, Repr]
class Object
trait Matchable
class Any

Value members

Concrete methods

def isAborted: Boolean

Returns true if the process was aborted, otherwise false

Returns true if the process was aborted, otherwise false

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product