Packages

c

akka.typed.ScalaDSL

SynchronousSelf

final case class SynchronousSelf[T](f: (ActorRef[T]) ⇒ Behavior[T]) extends Behavior[T] with Product with Serializable

This behavior allows sending messages to itself without going through the Actor’s mailbox. A message sent like this will be processed before the next message is taken out of the mailbox. In case of Actor failures outstanding messages that were sent to the synchronous self reference will be lost.

This decorator is useful for passing messages between the left and right sides of And and Or combinators.

Source
ScalaDSL.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SynchronousSelf
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Behavior
  7. AnyRef
  8. Any
Implicitly
  1. by BehaviorDecorators
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SynchronousSelf(f: (ActorRef[T]) ⇒ Behavior[T])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def &&(other: Behavior[T]): Behavior[T]

    Combine the two behaviors such that incoming messages are distributed to both of them, each one evolving its state independently.

    Combine the two behaviors such that incoming messages are distributed to both of them, each one evolving its state independently.

    Implicit
    This member is added by an implicit conversion from SynchronousSelf[T] to BehaviorDecorators[T] performed by method BehaviorDecorators in akka.typed.ScalaDSL.
    Definition Classes
    BehaviorDecorators
  4. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from SynchronousSelf[T] to any2stringadd[SynchronousSelf[T]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  5. def ->[B](y: B): (SynchronousSelf[T], B)
    Implicit
    This member is added by an implicit conversion from SynchronousSelf[T] to ArrowAssoc[SynchronousSelf[T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. val behavior: Behavior[T]
    Implicit
    This member is added by an implicit conversion from SynchronousSelf[T] to BehaviorDecorators[T] performed by method BehaviorDecorators in akka.typed.ScalaDSL.
    Definition Classes
    BehaviorDecorators
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def ensuring(cond: (SynchronousSelf[T]) ⇒ Boolean, msg: ⇒ Any): SynchronousSelf[T]
    Implicit
    This member is added by an implicit conversion from SynchronousSelf[T] to Ensuring[SynchronousSelf[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (SynchronousSelf[T]) ⇒ Boolean): SynchronousSelf[T]
    Implicit
    This member is added by an implicit conversion from SynchronousSelf[T] to Ensuring[SynchronousSelf[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: ⇒ Any): SynchronousSelf[T]
    Implicit
    This member is added by an implicit conversion from SynchronousSelf[T] to Ensuring[SynchronousSelf[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): SynchronousSelf[T]
    Implicit
    This member is added by an implicit conversion from SynchronousSelf[T] to Ensuring[SynchronousSelf[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. val f: (ActorRef[T]) ⇒ Behavior[T]
  16. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from SynchronousSelf[T] to StringFormat[SynchronousSelf[T]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. def management(ctx: ActorContext[T], msg: Signal): Behavior[T]

    Process an incoming Signal and return the next behavior.

    Process an incoming Signal and return the next behavior. This means that all lifecycle hooks, ReceiveTimeout, Terminated and Failed messages can initiate a behavior change.

    The returned behavior can in addition to normal behaviors be one of the canned special objects:

    * returning Stopped will terminate this Behavior * returning Same designates to reuse the current Behavior * returning Unhandled keeps the same Behavior and signals that the message was not yet handled

    Code calling this method should use Behavior$ canonicalize to replace the special objects with real Behaviors.

    Definition Classes
    SynchronousSelfBehavior
  21. def message(ctx: ActorContext[T], msg: T): Behavior[T]

    Process an incoming message and return the next behavior.

    Process an incoming message and return the next behavior.

    The returned behavior can in addition to normal behaviors be one of the canned special objects:

    * returning Stopped will terminate this Behavior * returning Same designates to reuse the current Behavior * returning Unhandled keeps the same Behavior and signals that the message was not yet handled

    Code calling this method should use Behavior$ canonicalize to replace the special objects with real Behaviors.

    Definition Classes
    SynchronousSelfBehavior
  22. def narrow[U <: T]: Behavior[U]

    Narrow the type of this Behavior, which is always a safe operation.

    Narrow the type of this Behavior, which is always a safe operation. This method is necessary to implement the contravariant nature of Behavior (which cannot be expressed directly due to type inference problems).

    Definition Classes
    Behavior
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  26. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    SynchronousSelf → AnyRef → Any
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. def widen[U >: T](matcher: PartialFunction[U, T]): Behavior[U]

    Widen the type of this Behavior by providing a filter function that permits only a subtype of the widened set of messages.

    Widen the type of this Behavior by providing a filter function that permits only a subtype of the widened set of messages.

    Implicit
    This member is added by an implicit conversion from SynchronousSelf[T] to BehaviorDecorators[T] performed by method BehaviorDecorators in akka.typed.ScalaDSL.
    Definition Classes
    BehaviorDecorators
  32. def ||(other: Behavior[T]): Behavior[T]

    Combine the two behaviors such that incoming messages are given first to the left behavior and are then only passed on to the right behavior if the left one returned Unhandled.

    Combine the two behaviors such that incoming messages are given first to the left behavior and are then only passed on to the right behavior if the left one returned Unhandled.

    Implicit
    This member is added by an implicit conversion from SynchronousSelf[T] to BehaviorDecorators[T] performed by method BehaviorDecorators in akka.typed.ScalaDSL.
    Definition Classes
    BehaviorDecorators
  33. def [B](y: B): (SynchronousSelf[T], B)
    Implicit
    This member is added by an implicit conversion from SynchronousSelf[T] to ArrowAssoc[SynchronousSelf[T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Behavior[T]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion BehaviorDecorators from SynchronousSelf[T] to BehaviorDecorators[T]

Inherited by implicit conversion any2stringadd from SynchronousSelf[T] to any2stringadd[SynchronousSelf[T]]

Inherited by implicit conversion StringFormat from SynchronousSelf[T] to StringFormat[SynchronousSelf[T]]

Inherited by implicit conversion Ensuring from SynchronousSelf[T] to Ensuring[SynchronousSelf[T]]

Inherited by implicit conversion ArrowAssoc from SynchronousSelf[T] to ArrowAssoc[SynchronousSelf[T]]

Ungrouped