Releases: neteroster/tokenflow
Releases · neteroster/tokenflow
TokenFlow 1.0 Beta
In this Release:
- Added an event system that allows users to easily monitor progress or build components like progress bars.
- Changed the result type when a user function throws an error. Now, if an exception is thrown in the request function, an
UnexpectedUserException(error_str, traceback_str)object will be returned as the request result.
Things to note:
- The user's request function should now return a triple—in addition to the action and result from previous versions, an event payload must also be returned. This payload will be passed to the callback function in the event system. If not needed,
Nonecan be returned as the event payload.