final case class Total[T](behavior: (T) ⇒ Behavior[T]) extends Behavior[T] with Product with Serializable
This type of behavior is created from a total function from the declared message type to the next behavior, which means that all possible incoming messages for the given type must be handled. 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
- Alphabetic
- By Inheritance
- Total
- Serializable
- Serializable
- Product
- Equals
- Behavior
- AnyRef
- Any
- by BehaviorDecorators
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Value Members
- 
      
      
      
        
      
    
      
        final 
        def
      
      
        !=(arg0: Any): Boolean
      
      
      - Definition Classes
- AnyRef → Any
 
- 
      
      
      
        
      
    
      
        final 
        def
      
      
        ##(): Int
      
      
      - Definition Classes
- AnyRef → Any
 
- 
      
      
      
        
      
    
      
        
        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 Total[T] to BehaviorDecorators[T] performed by method BehaviorDecorators in akka.typed.ScalaDSL.
- Definition Classes
- BehaviorDecorators
 
-  def +(other: String): String
-  def ->[B](y: B): (Total[T], B)
- 
      
      
      
        
      
    
      
        final 
        def
      
      
        ==(arg0: Any): Boolean
      
      
      - Definition Classes
- AnyRef → Any
 
- 
      
      
      
        
      
    
      
        final 
        def
      
      
        asInstanceOf[T0]: T0
      
      
      - Definition Classes
- Any
 
-  val behavior: (T) ⇒ Behavior[T]
- 
      
      
      
        
      
    
      
        
        def
      
      
        clone(): AnyRef
      
      
      - Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
 
-  def ensuring(cond: (Total[T]) ⇒ Boolean, msg: ⇒ Any): Total[T]
-  def ensuring(cond: (Total[T]) ⇒ Boolean): Total[T]
-  def ensuring(cond: Boolean, msg: ⇒ Any): Total[T]
-  def ensuring(cond: Boolean): Total[T]
- 
      
      
      
        
      
    
      
        final 
        def
      
      
        eq(arg0: AnyRef): Boolean
      
      
      - Definition Classes
- AnyRef
 
- 
      
      
      
        
      
    
      
        
        def
      
      
        finalize(): Unit
      
      
      - Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
 
-  def formatted(fmtstr: String): String
- 
      
      
      
        
      
    
      
        final 
        def
      
      
        getClass(): Class[_]
      
      
      - Definition Classes
- AnyRef → Any
 
- 
      
      
      
        
      
    
      
        final 
        def
      
      
        isInstanceOf[T0]: Boolean
      
      
      - Definition Classes
- Any
 
- 
      
      
      
        
      
    
      
        
        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 Stoppedwill terminate this Behavior * returningSamedesignates to reuse the current Behavior * returningUnhandledkeeps the same Behavior and signals that the message was not yet handledCode calling this method should use Behavior$ canonicalizeto replace the special objects with real Behaviors.
- 
      
      
      
        
      
    
      
        
        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 Stoppedwill terminate this Behavior * returningSamedesignates to reuse the current Behavior * returningUnhandledkeeps the same Behavior and signals that the message was not yet handledCode calling this method should use Behavior$ canonicalizeto replace the special objects with real Behaviors.
- 
      
      
      
        
      
    
      
        
        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
 
- 
      
      
      
        
      
    
      
        final 
        def
      
      
        ne(arg0: AnyRef): Boolean
      
      
      - Definition Classes
- AnyRef
 
- 
      
      
      
        
      
    
      
        final 
        def
      
      
        notify(): Unit
      
      
      - Definition Classes
- AnyRef
 
- 
      
      
      
        
      
    
      
        final 
        def
      
      
        notifyAll(): Unit
      
      
      - Definition Classes
- AnyRef
 
- 
      
      
      
        
      
    
      
        final 
        def
      
      
        synchronized[T0](arg0: ⇒ T0): T0
      
      
      - Definition Classes
- AnyRef
 
- 
      
      
      
        
      
    
      
        
        def
      
      
        toString(): String
      
      
      - Definition Classes
- Total → AnyRef → Any
 
- 
      
      
      
        
      
    
      
        final 
        def
      
      
        wait(): Unit
      
      
      - Definition Classes
- AnyRef
- Annotations
- @throws( ... )
 
- 
      
      
      
        
      
    
      
        final 
        def
      
      
        wait(arg0: Long, arg1: Int): Unit
      
      
      - Definition Classes
- AnyRef
- Annotations
- @throws( ... )
 
- 
      
      
      
        
      
    
      
        final 
        def
      
      
        wait(arg0: Long): Unit
      
      
      - Definition Classes
- AnyRef
- Annotations
- @throws( ... )
 
- 
      
      
      
        
      
    
      
        
        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 Total[T] to BehaviorDecorators[T] performed by method BehaviorDecorators in akka.typed.ScalaDSL.
- Definition Classes
- BehaviorDecorators
 
- 
      
      
      
        
      
    
      
        
        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 Total[T] to BehaviorDecorators[T] performed by method BehaviorDecorators in akka.typed.ScalaDSL.
- Definition Classes
- BehaviorDecorators
 
-  def →[B](y: B): (Total[T], B)
Shadowed Implicit Value Members
- 
      
      
      
        
      
    
      
        
        val
      
      
        behavior: Behavior[T]
      
      
      - Implicit
- This member is added by an implicit conversion from Total[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:(total: BehaviorDecorators[T]).behavior 
- Definition Classes
- BehaviorDecorators