You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the pallet-scheduler is able to schedule tasks to be dispatched at a particular block. However, with async backing and dynamic block time, block number based scheduling become less useful. Majority of the business logics are time based and we need a scheduler that's able to for example, schedule a task to be dispatched daily.
We can either have a new scheduler or to see if we can abstract the logic in such way to make the current pallet-scheduler also be schedule time based tasks.
The text was updated successfully, but these errors were encountered:
Yea i thought about some kind of pallet-calendar that exposes OnBeginWeek, OnBeginDay or whatever.
But having it in the scheduler would also be needed for one-off things.
Currently the pallet-scheduler is able to schedule tasks to be dispatched at a particular block. However, with async backing and dynamic block time, block number based scheduling become less useful. Majority of the business logics are time based and we need a scheduler that's able to for example, schedule a task to be dispatched daily.
We can either have a new scheduler or to see if we can abstract the logic in such way to make the current pallet-scheduler also be schedule time based tasks.
The text was updated successfully, but these errors were encountered: