Packages

final case class Partial[T](behavior: PartialFunction[T, Behavior[T]]) extends Behavior[T] with Product with Serializable

This type of Behavior is created from a partial function from the declared message type to the next behavior, flagging all unmatched messages as #Unhandled. All system signals are ignored by this behavior, which implies that a failure of a child actor will be escalated unconditionally.

This behavior type is most useful for leaf actors that do not create child actors themselves.

Source
ScalaDSL.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Partial
  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 Partial(behavior: PartialFunction[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 Partial[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 Partial[T] to any2stringadd[Partial[T]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  5. def ->[B](y: B): (Partial[T], B)
    Implicit
    This member is added by an implicit conversion from Partial[T] to ArrowAssoc[Partial[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: PartialFunction[T, Behavior[T]]
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def ensuring(cond: (Partial[T]) ⇒ Boolean, msg: ⇒ Any): Partial[T]
    Implicit
    This member is added by an implicit conversion from Partial[T] to Ensuring[Partial[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (Partial[T]) ⇒ Boolean): Partial[T]
    Implicit
    This member is added by an implicit conversion from Partial[T] to Ensuring[Partial[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: ⇒ Any): Partial[T]
    Implicit
    This member is added by an implicit conversion from Partial[T] to Ensuring[Partial[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): Partial[T]
    Implicit
    This member is added by an implicit conversion from Partial[T] to Ensuring[Partial[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Partial[T] to StringFormat[Partial[T]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  17. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. 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
    PartialBehavior
  20. 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
    PartialBehavior
  21. 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
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  25. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    Partial → AnyRef → Any
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. 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 Partial[T] to BehaviorDecorators[T] performed by method BehaviorDecorators in akka.typed.ScalaDSL.
    Definition Classes
    BehaviorDecorators
  31. 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 Partial[T] to BehaviorDecorators[T] performed by method BehaviorDecorators in akka.typed.ScalaDSL.
    Definition Classes
    BehaviorDecorators
  32. def [B](y: B): (Partial[T], B)
    Implicit
    This member is added by an implicit conversion from Partial[T] to ArrowAssoc[Partial[T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. val behavior: Behavior[T]
    Implicit
    This member is added by an implicit conversion from Partial[T] to BehaviorDecorators[T] performed by method BehaviorDecorators in akka.typed.ScalaDSL.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (partial: BehaviorDecorators[T]).behavior
    Definition Classes
    BehaviorDecorators

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 Partial[T] to BehaviorDecorators[T]

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

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

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

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

Ungrouped