Packages

final case class State(lastID: Long, clock: FiniteDuration, tasks: SortedSet[Task], lastReportedError: Throwable) extends Product with Serializable

Used internally by TestScheduler, represents the internal state used for task scheduling and execution.

Source
TestScheduler.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. State
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new State(lastID: Long, clock: FiniteDuration, tasks: SortedSet[Task], lastReportedError: Throwable)

Value Members

  1. val clock: FiniteDuration
  2. val lastID: Long
  3. val lastReportedError: Throwable
  4. def productElementNames: Iterator[String]
    Definition Classes
    Product
  5. val tasks: SortedSet[Task]