Click or drag to resize
Akka.NETTestKitBaseActorOfAsTestFSMRefTFsmActor, TState, TData Method (Props, String, Boolean)

Namespace:  Akka.TestKit
Assembly:  Akka.TestKit (in Akka.TestKit.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public TestFSMRef<TFsmActor, TState, TData> ActorOfAsTestFSMRef<TFsmActor, TState, TData>(
	Props props,
	string name = null,
	bool withLogging = false
)
where TFsmActor : FSM<TState, TData>

Parameters

props
Type: Akka.ActorProps
The Props object
name (Optional)
Type: SystemString
Optional: The name.
withLogging (Optional)
Type: SystemBoolean
Optional: If set to true logs state changes of the FSM as Debug messages. Default is false.

Type Parameters

TFsmActor
The type of the actor. It must be a FSMTState, TData and have a public parameterless constructor
TState
The type of state name
TData
The type of state data

Return Value

Type: TestFSMRefTFsmActor, TState, TData
TBD
See Also