Class PersistentFSM.StateChangeEvent
Persisted on state change
Implements
Inherited Members
Namespace: Akka.Persistence.Fsm
Assembly: Akka.Persistence.dll
Syntax
public class PersistentFSM.StateChangeEvent : IMessage
Constructors
| Edit this page View SourceStateChangeEvent(string, 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. |
| TimeSpan? | timeout | FSM state timeout. |
Properties
| Edit this page 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 |
|---|---|
| TimeSpan? |
Edit this page