FSMTState, TDataOnTermination Method |
Set the handler which is called upon termination of this FSM actor. Calling this
method again will overwrite the previous contents.
Namespace: Akka.ActorAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxpublic void OnTermination(
Action<FSMBaseStopEvent<TState, TData>> terminationHandler
)
Public Sub OnTermination (
terminationHandler As Action(Of FSMBaseStopEvent(Of TState, TData))
)
public:
void OnTermination(
Action<FSMBaseStopEvent<TState, TData>^>^ terminationHandler
)
member OnTermination :
terminationHandler : Action<FSMBaseStopEvent<'TState, 'TData>> -> unit
Parameters
- terminationHandler
- Type: SystemActionFSMBaseStopEventTState, TData
[Missing <param name="terminationHandler"/> documentation for "M:Akka.Actor.FSM`2.OnTermination(System.Action{Akka.Actor.FSMBase.StopEvent{`0,`1}})"]
See Also