Click or drag to resize
Akka.NETTestKitBaseActorOfAsTestFSMRefTFsmActor, TState, TData Method (ExpressionFuncTFsmActor, IActorRef, 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>(
	Expression<Func<TFsmActor>> factory,
	IActorRef supervisor,
	string name = null,
	bool withLogging = false
)
where TFsmActor : FSM<TState, TData>

Parameters

factory
Type: System.Linq.ExpressionsExpressionFuncTFsmActor
An expression that calls the constructor of TFsmActor
supervisor
Type: Akka.ActorIActorRef
The supervisor
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.
TState
The type of state name
TData
The type of state data

Return Value

Type: TestFSMRefTFsmActor, TState, TData
TBD
See Also