Class ManualTime
- java.lang.Object
-
- akka.actor.testkit.typed.scaladsl.ManualTime
-
public final class ManualTime extends java.lang.ObjectNot for user instantiation, seeapply(akka.actor.typed.ActorSystem<?>)
-
-
Constructor Summary
Constructors Constructor Description ManualTime(ExplicitlyTriggeredScheduler delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ManualTimeapply(ActorSystem<?> system)Access the manual scheduler, note that you need to setup the actor system/testkit withManualTime.configfor this to work.static com.typesafe.config.Configconfig()Config needed to use theExplicitlyTriggeredSchedulervoidexpectNoMessageFor(scala.concurrent.duration.FiniteDuration duration, TestProbe<?>... on)Advance the clock by the specified duration, executing all outstanding jobs on the calling thread before returning.voidexpectNoMessageFor(scala.concurrent.duration.FiniteDuration duration, scala.collection.immutable.Seq<TestProbe<?>> on)voidtimePasses(scala.concurrent.duration.FiniteDuration amount)Advance the clock by the specified duration, executing all outstanding jobs on the calling thread before returning.
-
-
-
Constructor Detail
-
ManualTime
public ManualTime(ExplicitlyTriggeredScheduler delegate)
-
-
Method Detail
-
config
public static com.typesafe.config.Config config()
Config needed to use theExplicitlyTriggeredScheduler
-
apply
public static ManualTime apply(ActorSystem<?> system)
Access the manual scheduler, note that you need to setup the actor system/testkit withManualTime.configfor this to work.
-
expectNoMessageFor
public void expectNoMessageFor(scala.concurrent.duration.FiniteDuration duration, TestProbe<?>... on)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.
-
timePasses
public void timePasses(scala.concurrent.duration.FiniteDuration amount)
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.
-
expectNoMessageFor
public void expectNoMessageFor(scala.concurrent.duration.FiniteDuration duration, scala.collection.immutable.Seq<TestProbe<?>> on)
-
-