Packages

trait Runner extends Control

Linear Supertypes
Control, Lazy, Product, Equals, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Runner
  2. Control
  3. Lazy
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. abstract type Repr[T <: Txn[T]] <: proc.Runner[T]
    Definition Classes
    RunnerControlLazy

Abstract Value Members

  1. abstract def canEqual(that: Any): Boolean
    Definition Classes
    Equals
  2. abstract def mkRepr[T <: Txn[T]](implicit ctx: Context[T], tx: T): Repr[T]
    Attributes
    protected
    Definition Classes
    Lazy
  3. abstract def productArity: Int
    Definition Classes
    Product
  4. abstract def productElement(n: Int): Any
    Definition Classes
    Product

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def busy: Trig

    Triggers if the state becomes 1, 2, or 3.

  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. def done: Trig

    Triggers if the state becomes 4

  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. final def expand[T <: Txn[T]](implicit ctx: Context[T], tx: T): Repr[T]
    Definition Classes
    Lazy
  11. def failed: Trig

    Triggers if the state becomes 5

  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. def hasFailed: Ex[Boolean]

    State is 5.

  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. def idle: Trig

    Triggers if the state becomes 0, 4, or 5

  16. def isBusy: Ex[Boolean]

    State is 1, 2, or 3.

    State is 1, 2, or 3. Opposite of idle

  17. def isDone: Ex[Boolean]

    State is 4.

  18. def isIdle: Ex[Boolean]

    State is 0, 4, or 5.

    State is 0, 4, or 5. Opposite of busy

  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. def isRunning: Ex[Boolean]

    State is 3.

  21. def isStopped: Ex[Boolean]

    State is 0.

  22. def isStoppedOrDone: Ex[Boolean]

    State is 0 or 4.

  23. def messages: Ex[Seq[(Long, Int, String)]]

    A message tuple is (time, level, text) where level is 0 (info), 1 (warn) or 2 (error).

  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  27. def productElementName(n: Int): String
    Definition Classes
    Product
  28. def productElementNames: Iterator[String]
    Definition Classes
    Product
  29. def productIterator: Iterator[Any]
    Definition Classes
    Product
  30. def productPrefix: String
    Definition Classes
    Product
  31. def progress: Ex[Double]

    Zero to one.

    Zero to one. Negative if unknown

  32. final val ref: AnyRef
    Attributes
    protected
    Definition Classes
    Lazy
    Annotations
    @transient()
  33. def run: Act

    Runs the process without custom arguments.

  34. def runWith(attr: Runner.Attr*): Act

    Runs the process with a list of given key-value arguments.

  35. def running: Trig

    Triggers if the state becomes 2

  36. def state: Ex[Int]

    0 - stopped, 1 - preparing, 2 - prepared, 3 - running, 4 - done, 5 - failed

  37. def stop: Act

    Stops the process.

  38. def stopped: Trig

    Triggers if the state becomes 0

  39. def stoppedOrDone: Trig

    Triggers if the state becomes 0 or 4

  40. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  41. def toString(): String
    Definition Classes
    AnyRef → Any
  42. final def token: AnyRef
    Definition Classes
    Control
  43. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  44. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  45. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Control

Inherited from Lazy

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped