Click or drag to resize
Akka.NETIActorDsl Interface
TBD

Namespace:  Akka.Actor.Dsl
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public interface IActorDsl

The IActorDsl type exposes the following members.

Properties
  NameDescription
Public propertyOnPostRestart
TBD
Public propertyOnPostStop
TBD
Public propertyOnPreRestart
TBD
Public propertyOnPreStart
TBD
Public propertyStrategy
TBD
Top
Methods
  NameDescription
Public methodActorOf
TBD
Public methodBecome
Changes the actor's behavior and replaces the current handler with the specified handler.
Public methodBecomeStacked
Changes the actor's behavior and replaces the current handler with the specified handler without discarding the current. The current handler is stored on a stack, and you can revert to it by calling UnbecomeStacked
Remarks
Public methodDefaultPostRestart
TBD
Public methodDefaultPostStop
TBD
Public methodDefaultPreRestart
TBD
Public methodDefaultPreStart
TBD
Public methodReceiveT(ActionT, IActorContext)
TBD
Public methodReceiveT(PredicateT, ActionT, IActorContext)
TBD
Public methodReceiveT(ActionT, IActorContext, PredicateT)
TBD
Public methodReceiveAny
TBD
Public methodReceiveAnyAsync
Registers an asynchronous handler for any incoming message that has not already been handled.
Public methodReceiveAsyncT(PredicateT, FuncT, IActorContext, Task)
Registers an async handler for messages of the specified type T
Public methodReceiveAsyncT(FuncT, IActorContext, Task, PredicateT)
Registers an async handler for messages of the specified type T
Public methodUnbecomeStacked
Changes the actor's behavior and replaces the current handler with the previous one on the behavior stack.
Remarks
Top
See Also