public abstract class JavaTestKit.Within
extends java.lang.Object
min
and max
. Within
blocks may be
nested. All methods in this trait which take maximum wait times are
available in a version which implicitly uses the remaining time governed by
the innermost enclosing Within
block.
Note that the timeout is scaled using dilated
, which uses the
configuration entry "akka.test.timefactor", while the min Duration is not.
// the run() method needs to finish within 3 seconds
new Within(duration("3 seconds")) {
protected void run() {
// ...
}
}
Constructor and Description |
---|
Within(scala.concurrent.duration.FiniteDuration max) |
Within(scala.concurrent.duration.FiniteDuration min,
scala.concurrent.duration.FiniteDuration max) |
Modifier and Type | Method and Description |
---|---|
protected abstract void |
run() |