c

akka.testkit

ExplicitlyTriggeredScheduler

class ExplicitlyTriggeredScheduler extends Scheduler

For testing: scheduler that does not look at the clock, but must be progressed manually by calling timePasses.

This allows for faster and less timing-sensitive specs, as jobs will be executed on the test thread instead of using the original {ExecutionContext}. This means recreating specific scenario's becomes easier, but these tests might fail to catch race conditions that only happen when tasks are scheduled in parallel in 'real time'.

Source
ExplicitlyTriggeredScheduler.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExplicitlyTriggeredScheduler
  2. Scheduler
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ExplicitlyTriggeredScheduler(config: Config, log: LoggingAdapter, tf: ThreadFactory)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ExplicitlyTriggeredScheduler to any2stringadd[ExplicitlyTriggeredScheduler] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ExplicitlyTriggeredScheduler, B)
    Implicit
    This member is added by an implicit conversion from ExplicitlyTriggeredScheduler to ArrowAssoc[ExplicitlyTriggeredScheduler] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  8. def ensuring(cond: (ExplicitlyTriggeredScheduler) ⇒ Boolean, msg: ⇒ Any): ExplicitlyTriggeredScheduler
    Implicit
    This member is added by an implicit conversion from ExplicitlyTriggeredScheduler to Ensuring[ExplicitlyTriggeredScheduler] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (ExplicitlyTriggeredScheduler) ⇒ Boolean): ExplicitlyTriggeredScheduler
    Implicit
    This member is added by an implicit conversion from ExplicitlyTriggeredScheduler to Ensuring[ExplicitlyTriggeredScheduler] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: ⇒ Any): ExplicitlyTriggeredScheduler
    Implicit
    This member is added by an implicit conversion from ExplicitlyTriggeredScheduler to Ensuring[ExplicitlyTriggeredScheduler] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): ExplicitlyTriggeredScheduler
    Implicit
    This member is added by an implicit conversion from ExplicitlyTriggeredScheduler to Ensuring[ExplicitlyTriggeredScheduler] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ExplicitlyTriggeredScheduler to StringFormat[ExplicitlyTriggeredScheduler] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def maxFrequency: Double
    Definition Classes
    ExplicitlyTriggeredScheduler → Scheduler
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. def schedule(initialDelay: FiniteDuration, interval: FiniteDuration, runnable: Runnable)(implicit executor: ExecutionContext): Cancellable
    Definition Classes
    ExplicitlyTriggeredScheduler → Scheduler
  23. def schedule(initialDelay: Duration, interval: Duration, runnable: Runnable)(implicit executor: ExecutionContext): Cancellable
    Definition Classes
    Scheduler
  24. final def schedule(initialDelay: FiniteDuration, interval: FiniteDuration)(f: ⇒ Unit)(implicit executor: ExecutionContext): Cancellable
    Definition Classes
    Scheduler
  25. final def schedule(initialDelay: Duration, interval: Duration, receiver: ActorRef, message: Any, executor: ExecutionContext, sender: ActorRef): Cancellable
    Definition Classes
    Scheduler
  26. final def schedule(initialDelay: FiniteDuration, interval: FiniteDuration, receiver: ActorRef, message: Any)(implicit executor: ExecutionContext, sender: ActorRef): Cancellable
    Definition Classes
    Scheduler
  27. def scheduleOnce(delay: FiniteDuration, runnable: Runnable)(implicit executor: ExecutionContext): Cancellable
    Definition Classes
    ExplicitlyTriggeredScheduler → Scheduler
  28. def scheduleOnce(delay: Duration, runnable: Runnable)(implicit executor: ExecutionContext): Cancellable
    Definition Classes
    Scheduler
  29. final def scheduleOnce(delay: FiniteDuration)(f: ⇒ Unit)(implicit executor: ExecutionContext): Cancellable
    Definition Classes
    Scheduler
  30. final def scheduleOnce(delay: Duration, receiver: ActorRef, message: Any, executor: ExecutionContext, sender: ActorRef): Cancellable
    Definition Classes
    Scheduler
  31. final def scheduleOnce(delay: FiniteDuration, receiver: ActorRef, message: Any)(implicit executor: ExecutionContext, sender: ActorRef): Cancellable
    Definition Classes
    Scheduler
  32. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  33. def timePasses(amount: FiniteDuration): Unit

    Advance the clock by the specified duration, executing all outstanding jobs on the calling thread before returning.

    Advance the clock by the specified duration, executing all outstanding jobs on the calling thread before returning.

    We will not add a dilation factor to this amount, since the scheduler API also does not apply dilation. If you want the amount of time passed to be dilated, apply the dilation before passing the delay to this method.

  34. def toString(): String
    Definition Classes
    AnyRef → Any
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  37. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. def [B](y: B): (ExplicitlyTriggeredScheduler, B)
    Implicit
    This member is added by an implicit conversion from ExplicitlyTriggeredScheduler to ArrowAssoc[ExplicitlyTriggeredScheduler] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

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

    (Since version ) see corresponding Javadoc for more information.

Inherited from Scheduler

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ExplicitlyTriggeredScheduler to any2stringadd[ExplicitlyTriggeredScheduler]

Inherited by implicit conversion StringFormat from ExplicitlyTriggeredScheduler to StringFormat[ExplicitlyTriggeredScheduler]

Inherited by implicit conversion Ensuring from ExplicitlyTriggeredScheduler to Ensuring[ExplicitlyTriggeredScheduler]

Inherited by implicit conversion ArrowAssoc from ExplicitlyTriggeredScheduler to ArrowAssoc[ExplicitlyTriggeredScheduler]

Ungrouped