mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-04 09:17:36 +08:00
3c37704a5b
schedule_function takes a date rule, a time rule, and a function and will call the function, passing context and data only when the two rules fire. This allows for code that is conditional to the datetime of the algo. This is implemented internally with `Event` objects which are pairings of `EventRule`s and callbacks. handle_data becomes a special event with a rule that always fires. This makes the logic for handling events more complete and compact.