Class PersistentFSM.StateChangeEvent
Persisted on state change
Implements
Inherited Members
Namespace: Akka.Persistence.Fsm
Assembly: Akka.Persistence.dll
Syntax
public class StateChangeEvent : IMessage
Constructors
| Improve this Doc View SourceStateChangeEvent(String, Nullable<TimeSpan>)
Initializes a new instance of the PersistentFSM.StateChangeEvent class.
Declaration
public StateChangeEvent(string stateIdentifier, TimeSpan? timeout)
Parameters
Type | Name | Description |
---|---|---|
String | stateIdentifier | FSM state identifier. |
Nullable<TimeSpan> | timeout | FSM state timeout. |
Properties
| Improve this Doc View SourceStateIdentifier
FSM state identifier.
Declaration
public string StateIdentifier { get; }
Property Value
Type | Description |
---|---|
String |
Timeout
FSM state timeout.
Declaration
public TimeSpan? Timeout { get; }
Property Value
Type | Description |
---|---|
Nullable<TimeSpan> |