tinymachine icon indicating copy to clipboard operation
tinymachine copied to clipboard

Simple yet convenient FSM tailored for Android

Results 1 tinymachine issues
Sort by recently updated
recently updated
newest added

StateHandler does not get invoked if defined with primitive datatypes: ``` @StateHandler(state = STATE_LOCATION_RESOLUTION_REQUIRED) public void onEventStateLocationResolutionRequired(boolean success, TinyMachine tm) { // Code does not flow here. if (success) tm.transitionTo(STATE_BINDING_SERVICE);...