Class

akka.typed.ScalaDSL

FullTotal

Related Doc: package ScalaDSL

Permalink

final case class FullTotal[T](behavior: (MessageOrSignal[T]) ⇒ Behavior[T]) extends Behavior[T] with Product with Serializable

This type of behavior expects a total function that describes the actor’s reaction to all system signals or user messages, without providing a fallback mechanism for either. If you use partial function literal syntax to create the supplied function then any message not matching the list of cases will fail this actor with a scala.MatchError.

Source
ScalaDSL.scala
Linear Supertypes
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. FullTotal
  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 FullTotal(behavior: (MessageOrSignal[T]) ⇒ Behavior[T])

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def &&(other: Behavior[T]): Behavior[T]

    Permalink

    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 information
    This member is added by an implicit conversion from FullTotal[T] to BehaviorDecorators[T] performed by method BehaviorDecorators in akka.typed.ScalaDSL.
    Definition Classes
    BehaviorDecorators
  4. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from FullTotal[T] to any2stringadd[FullTotal[T]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  5. def ->[B](y: B): (FullTotal[T], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from FullTotal[T] to ArrowAssoc[FullTotal[T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean

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

    Permalink
    Definition Classes
    Any
  8. val behavior: (MessageOrSignal[T]) ⇒ Behavior[T]

    Permalink
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def ensuring(cond: (FullTotal[T]) ⇒ Boolean, msg: ⇒ Any): FullTotal[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from FullTotal[T] to Ensuring[FullTotal[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (FullTotal[T]) ⇒ Boolean): FullTotal[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from FullTotal[T] to Ensuring[FullTotal[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: ⇒ Any): FullTotal[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from FullTotal[T] to Ensuring[FullTotal[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): FullTotal[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from FullTotal[T] to Ensuring[FullTotal[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from FullTotal[T] to StringFormat[FullTotal[T]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  17. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    Any
  19. def management(ctx: ActorContext[T], msg: Signal): Behavior[T]

    Permalink

    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
    FullTotalBehavior
  20. def message(ctx: ActorContext[T], msg: T): Behavior[T]

    Permalink

    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
    FullTotalBehavior
  21. def narrow[U <: T]: Behavior[U]

    Permalink

    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

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

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

    Permalink
    Definition Classes
    AnyRef
  25. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. def widen[U >: T](matcher: PartialFunction[U, T]): Behavior[U]

    Permalink

    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 information
    This member is added by an implicit conversion from FullTotal[T] to BehaviorDecorators[T] performed by method BehaviorDecorators in akka.typed.ScalaDSL.
    Definition Classes
    BehaviorDecorators
  31. def ||(other: Behavior[T]): Behavior[T]

    Permalink

    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 information
    This member is added by an implicit conversion from FullTotal[T] to BehaviorDecorators[T] performed by method BehaviorDecorators in akka.typed.ScalaDSL.
    Definition Classes
    BehaviorDecorators
  32. def [B](y: B): (FullTotal[T], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from FullTotal[T] to ArrowAssoc[FullTotal[T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. val behavior: Behavior[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from FullTotal[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:
    (fullTotal: 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 FullTotal[T] to BehaviorDecorators[T]

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

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

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

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

Ungrouped