Click or drag to resize
Akka.NETFSMTState, TDataStartWith Method
Sets the initial state for this FSM. Call this method from the constructor before the Initialize method. If different state is needed after a restart this method, followed by Initialize, can be used in the actor life cycle hooks PreStart and PostRestart(Exception).

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public void StartWith(
	TState stateName,
	TData stateData,
	Nullable<TimeSpan> timeout = null
)

Parameters

stateName
Type: TState
Initial state designator.
stateData
Type: TData
Initial state data.
timeout (Optional)
Type: SystemNullableTimeSpan
State timeout for the initial state, overriding the default timeout for that state.
See Also