All Downloads are FREE. Search and download functionalities are using the official Maven repository.

akka.akka-testkit-typed_2.12.2.5.12.source-code.reference.conf Maven / Gradle / Ivy

The newest version!
############################################
# Akka Typed Testkit Reference Config File #
############################################

# This is the reference config file that contains all the default settings.
# Make your edits/overrides in your application.conf.

akka.actor.typed.test {
  # factor by which to scale timeouts during tests, e.g. to account for shared
  # build system load
  timefactor =  1.0

  # duration to wait in expectMsg and friends outside of within() block
  # by default, will be dilated by the timefactor.
  single-expect-default = 3s

  # duration to wait in expectNoMessage by default,
  # will be dilated by the timefactor.
  expect-no-message-default = 100ms

  # The timeout that is added as an implicit by DefaultTimeout trait, will be dilated by the timefactor.
  default-timeout = 5s

  # Default timeout for shutting down the actor system (used when no explicit timeout specified),
  # will be dilated by the timefactor.
  system-shutdown-default=10s

  # Throw an exception on shutdown if the timeout is hit, if false an error is printed to stdout instead.
  throw-on-shutdown-timeout=true

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy