You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apologies for not following the template, but it didn't really apply.
The class level documentation on FSMBase.SubscribeTransitionCallback doesn't make sense. It looks like the author copied the wrong type names in a couple of places.
/// <summary>/// Send this to an <see cref="SubscribeTransitionCallBack"/> to request first the <see cref="UnsubscribeTransitionCallBack"/>/// followed by a series of <see cref="Transition{TS}"/> updates. Cancel the subscription using/// <see cref="CurrentState{TS}"/>./// </summary>publicsealedclass SubscribeTransitionCallBack
Send this to an SubscribeTransiitionCallback should probably be to an FSM
...to request first the UnsubscribeTransitionCallback - not sure what this is trying to tell me
Cancel the subscription using CurrentState<TS> - unsubscribe using UnsubscribeTransitionCallback
The text was updated successfully, but these errors were encountered:
Apologies for not following the template, but it didn't really apply.
The class level documentation on
FSMBase.SubscribeTransitionCallback
doesn't make sense. It looks like the author copied the wrong type names in a couple of places.See: https://github.com/akkadotnet/akka.net/blob/dev/src/core/Akka/Actor/FSM.cs#L157
SubscribeTransiitionCallback
should probably be to anFSM
UnsubscribeTransitionCallback
- not sure what this is trying to tell meCurrentState<TS>
- unsubscribe usingUnsubscribeTransitionCallback
The text was updated successfully, but these errors were encountered: