-
Does |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi! No You can see I am not a
See my wiki for more info: https://github.com/nsk90/kstatemachine/wiki |
Beta Was this translation helpful? Give feedback.
Hi! No
kstatemachine
is not inspired byTinder/StateMachine
but DSL may look similar in some cases.Kstatemachine
is intended to be similar by functionality toQStateMachine
framework fromQt
libraries, but with nice Kotlin DSL syntax. I findQt
functionality more powerful thanTinder/StateMachine
.You can see
Qt
documentation, it is really good: https://doc.qt.io/qt-5/statemachine-api.html.I am not a
Tinder/StateMachine
user, but I had a look at it's implementation when started this library.Here are some key differences that I know (maybe I am wrong in some cases):
Tinder/StateMachine
forces a user to process all transitions in a single function,kstatemachine
not.Tinder/StateMachine
…