Object

akka.actor.testkit.typed.scaladsl

Effects

Related Doc: package scaladsl

Permalink

object Effects

Factories for behavior effects for BehaviorTestKit, each effect has a suitable equals and can be used to compare actual effects to expected ones.

Source
Effects.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Effects
  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. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  13. def noEffects(): NoEffects

    Permalink

    Used to represent an empty list of effects - in other words, the behavior didn't do anything observable

  14. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  16. def receiveTimeoutSet[T](d: FiniteDuration, message: T): ReceiveTimeoutSet[T]

    Permalink

    The behavior set a new receive timeout, with message as timeout notification

  17. def scheduled[U](delay: FiniteDuration, target: typed.ActorRef[U], message: U): Scheduled[U]

    Permalink

    The behavior used context.schedule to schedule message to be sent to target after delay FIXME what about events scheduled through the scheduler?

  18. def spawned[T](behavior: Behavior[T], childName: String, props: typed.Props, ref: typed.ActorRef[T]): Spawned[T]

    Permalink

    The behavior spawned a named child with the given behavior and specific props

  19. def spawned[T](behavior: Behavior[T], childName: String, props: typed.Props): Spawned[T]

    Permalink

    The behavior spawned a named child with the given behavior and specific props

  20. def spawned[T](behavior: Behavior[T], childName: String, ref: typed.ActorRef[T]): Spawned[T]

    Permalink

    The behavior spawned a named child with the given behavior with no specific props

  21. def spawned[T](behavior: Behavior[T], childName: String): Spawned[T]

    Permalink

    The behavior spawned a named child with the given behavior with no specific props

  22. def spawnedAnonymous[T](behavior: Behavior[T], props: typed.Props, ref: typed.ActorRef[T]): SpawnedAnonymous[T]

    Permalink

    The behavior spawned an anonymous child with the given behavior with specific props

  23. def spawnedAnonymous[T](behavior: Behavior[T], props: typed.Props): SpawnedAnonymous[T]

    Permalink

    The behavior spawned an anonymous child with the given behavior with specific props

  24. def spawnedAnonymous[T](behavior: Behavior[T], ref: typed.ActorRef[T]): SpawnedAnonymous[T]

    Permalink

    The behavior spawned an anonymous child with the given behavior with no specific props

  25. def spawnedAnonymous[T](behavior: Behavior[T]): SpawnedAnonymous[T]

    Permalink

    The behavior spawned an anonymous child with the given behavior with no specific props

  26. def stopped(childName: String): Stopped

    Permalink

    The behavior stopped childName

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  29. def unwatched[T](other: typed.ActorRef[T]): Unwatched[T]

    Permalink

    The behavior started watching other, through context.unwatch(other)

  30. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. def watched[T](other: typed.ActorRef[T]): Watched[T]

    Permalink

    The behavior started watching other, through context.watch(other)

Inherited from AnyRef

Inherited from Any

Ungrouped