-
-
Notifications
You must be signed in to change notification settings - Fork 74
Transitions
Andrew Gresyk edited this page Apr 12, 2024
·
2 revisions
-
Transition methods are available on:
- FSM instance:
RootandPeerRoot - Controls:
FullControlandGuardControl
- FSM instance:
-
Transition destinations arguments can be either state type or StateID
void Root::changeTo<TState>(); void Root::changeTo(StateID);
-
Transitions can have payloads
| Method | Description |
|---|---|
void Root::changeTo<TState>();void Root::changeTo(StateID);
|
Default transition |
FullControl / GuardControl Methods
| Method | Description |
|---|---|
void FullControl::changeTo<TState>();void FullControl::changeTo(StateID);
|
Default transition |