Packages

c

akka.typed.ScalaDSL

BehaviorDecorators

implicit final class BehaviorDecorators[T] extends AnyVal

Source
ScalaDSL.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BehaviorDecorators
  2. AnyVal
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BehaviorDecorators(behavior: Behavior[T])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    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.

  4. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from BehaviorDecorators[T] to any2stringadd[BehaviorDecorators[T]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  5. def ->[B](y: B): (BehaviorDecorators[T], B)
    Implicit
    This member is added by an implicit conversion from BehaviorDecorators[T] to ArrowAssoc[BehaviorDecorators[T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. val behavior: Behavior[T]
  9. def ensuring(cond: (BehaviorDecorators[T]) ⇒ Boolean, msg: ⇒ Any): BehaviorDecorators[T]
    Implicit
    This member is added by an implicit conversion from BehaviorDecorators[T] to Ensuring[BehaviorDecorators[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: (BehaviorDecorators[T]) ⇒ Boolean): BehaviorDecorators[T]
    Implicit
    This member is added by an implicit conversion from BehaviorDecorators[T] to Ensuring[BehaviorDecorators[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean, msg: ⇒ Any): BehaviorDecorators[T]
    Implicit
    This member is added by an implicit conversion from BehaviorDecorators[T] to Ensuring[BehaviorDecorators[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean): BehaviorDecorators[T]
    Implicit
    This member is added by an implicit conversion from BehaviorDecorators[T] to Ensuring[BehaviorDecorators[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from BehaviorDecorators[T] to StringFormat[BehaviorDecorators[T]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  14. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def toString(): String
    Definition Classes
    Any
  17. 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.

  18. 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.

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

Inherited from AnyVal

Inherited from Any

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

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

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

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

Ungrouped