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'.
- Alphabetic
- By Inheritance
- ExplicitlyTriggeredScheduler
- Scheduler
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Instance Constructors
- new ExplicitlyTriggeredScheduler(config: Config, log: LoggingAdapter, tf: ThreadFactory)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
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
-
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()
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate() @throws( ... )
-
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
-
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
-
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
-
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
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
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()
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
maxFrequency: Double
- Definition Classes
- ExplicitlyTriggeredScheduler → Scheduler
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
schedule(initialDelay: FiniteDuration, interval: FiniteDuration, runnable: Runnable)(implicit executor: ExecutionContext): Cancellable
- Definition Classes
- ExplicitlyTriggeredScheduler → Scheduler
-
def
schedule(initialDelay: Duration, interval: Duration, runnable: Runnable)(implicit executor: ExecutionContext): Cancellable
- Definition Classes
- Scheduler
-
final
def
schedule(initialDelay: FiniteDuration, interval: FiniteDuration)(f: ⇒ Unit)(implicit executor: ExecutionContext): Cancellable
- Definition Classes
- Scheduler
-
final
def
schedule(initialDelay: Duration, interval: Duration, receiver: ActorRef, message: Any, executor: ExecutionContext, sender: ActorRef): Cancellable
- Definition Classes
- Scheduler
-
final
def
schedule(initialDelay: FiniteDuration, interval: FiniteDuration, receiver: ActorRef, message: Any)(implicit executor: ExecutionContext, sender: ActorRef): Cancellable
- Definition Classes
- Scheduler
-
def
scheduleOnce(delay: FiniteDuration, runnable: Runnable)(implicit executor: ExecutionContext): Cancellable
- Definition Classes
- ExplicitlyTriggeredScheduler → Scheduler
-
def
scheduleOnce(delay: Duration, runnable: Runnable)(implicit executor: ExecutionContext): Cancellable
- Definition Classes
- Scheduler
-
final
def
scheduleOnce(delay: FiniteDuration)(f: ⇒ Unit)(implicit executor: ExecutionContext): Cancellable
- Definition Classes
- Scheduler
-
final
def
scheduleOnce(delay: Duration, receiver: ActorRef, message: Any, executor: ExecutionContext, sender: ActorRef): Cancellable
- Definition Classes
- Scheduler
-
final
def
scheduleOnce(delay: FiniteDuration, receiver: ActorRef, message: Any)(implicit executor: ExecutionContext, sender: ActorRef): Cancellable
- Definition Classes
- Scheduler
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
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.
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
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