Class FSMBase.LogEntry<TS, TD>
Log entry of the ILoggingFSM - can be obtained by calling
Inherited Members
Namespace: Akka.Actor
Assembly: Akka.dll
Syntax
public sealed class FSMBase.LogEntry<TS, TD>
Type Parameters
| Name | Description |
|---|---|
| TS | The name of the state |
| TD | The data of the state |
Constructors
| Edit this page View SourceLogEntry(TS, TD, object)
Initializes a new instance of the LogEntry
Declaration
public LogEntry(TS stateName, TD stateData, object fsmEvent)
Parameters
| Type | Name | Description |
|---|---|---|
| TS | stateName | TBD |
| TD | stateData | TBD |
| object | fsmEvent | TBD |
Properties
| Edit this page View SourceFsmEvent
TBD
Declaration
public object FsmEvent { get; }
Property Value
| Type | Description |
|---|---|
| object |
StateData
TBD
Declaration
public TD StateData { get; }
Property Value
| Type | Description |
|---|---|
| TD |
StateName
TBD
Declaration
public TS StateName { get; }
Property Value
| Type | Description |
|---|---|
| TS |
Methods
| Edit this page View SourceToString()
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string |
Edit this page