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
I have implemented and ad-hoc Bluetooth connection state machine based on states and events (no need for SideEffects / actions for the moment). I was thinking about switching that state machine to a version created using this library.
Is it possible to create such state machine, or as a minimum I should have at least 1 SideEffect (a dummy one for example)?
Thanks in advance.
The text was updated successfully, but these errors were encountered:
Using Nothing for type parameters which you aren't going to use is the correct way. This ensures that there is no way you can accidentally use a side-effect parameter anywhere in your statemachine definition. In transitionTo and anywhere else the effect parameter is optional and the Nothing type won't allow you to pass anything but null.
Hi,
I have implemented and ad-hoc Bluetooth connection state machine based on states and events (no need for
SideEffect
s / actions for the moment). I was thinking about switching that state machine to a version created using this library.Is it possible to create such state machine, or as a minimum I should have at least 1
SideEffect
(a dummy one for example)?Thanks in advance.
The text was updated successfully, but these errors were encountered: