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
provide a managed data structure accessible from the fsm context that allows you to defer handling a signal until you are in a latter state (or later portion of a composed decider)
//enqueue a signal you want to handle later
ctx.Enqeue("SignalName", input)
var signals []interface{} //provide typed mechanism
signals = ctx.Queue("SignalName")
//composed decider variant
fsm.QueueSignal("SomeSignalName")
The text was updated successfully, but these errors were encountered:
provide a managed data structure accessible from the fsm context that allows you to defer handling a signal until you are in a latter state (or later portion of a composed decider)
/cc @fabiokung @dgouldin
The text was updated successfully, but these errors were encountered: