Object/Class

akka.actor.testkit.typed.javadsl

ActorTestKit

Related Docs: class ActorTestKit | package javadsl

Permalink

object ActorTestKit

Source
ActorTestKit.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ActorTestKit
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def create(name: String, customConfig: Config, settings: TestKitSettings): ActorTestKit

    Permalink

    Create a named testkit, and use a custom config for the actor system, and a custom akka.actor.testkit.typed.TestKitSettings

    Create a named testkit, and use a custom config for the actor system, and a custom akka.actor.testkit.typed.TestKitSettings

    It will create an akka.actor.typed.ActorSystem with this name, e.g. threads will include the name. When the test has completed you should terminate the ActorSystem and the testkit with ActorTestKit#shutdownTestKit.

  7. def create(name: String, customConfig: Config): ActorTestKit

    Permalink

    Create a named testkit, and use a custom config for the actor system.

    Create a named testkit, and use a custom config for the actor system.

    It will create an akka.actor.typed.ActorSystem with this name, e.g. threads will include the name. When the test has completed you should terminate the ActorSystem and the testkit with ActorTestKit#shutdownTestKit.

  8. def create(name: String): ActorTestKit

    Permalink

    Create a named testkit.

    Create a named testkit.

    It will create an akka.actor.typed.ActorSystem with this name, e.g. threads will include the name. When the test has completed you should terminate the ActorSystem and the testkit with ActorTestKit#shutdownTestKit.

  9. def create(): ActorTestKit

    Permalink

    Create a testkit named from the class that is calling this method.

    Create a testkit named from the class that is calling this method.

    It will create an akka.actor.typed.ActorSystem with this name, e.g. threads will include the name. When the test has completed you should terminate the ActorSystem and the testkit with ActorTestKit#shutdownTestKit.

  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. def shutdown(system: typed.ActorSystem[_]): Unit

    Permalink

    Shutdown the given akka.actor.typed.ActorSystem and block until it shuts down, if more time than system-shutdown-default passes an exception is thrown (can be configured with throw-on-shutdown-timeout).

  20. def shutdown(system: typed.ActorSystem[_], duration: Duration): Unit

    Permalink

    Shutdown the given akka.actor.typed.ActorSystem and block until it shuts down, if more time than system-shutdown-default passes an exception is thrown (can be configured with throw-on-shutdown-timeout).

  21. def shutdown(system: typed.ActorSystem[_], duration: Duration, throwIfShutdownTimesOut: Boolean): Unit

    Permalink

    Shutdown the given actor system and wait up to duration for shutdown to complete.

    Shutdown the given actor system and wait up to duration for shutdown to complete.

    throwIfShutdownTimesOut

    Fail the test if the system fails to shut down, if false an error is printed to stdout when the system did not shutdown but no exception is thrown.

  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  23. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped