radiate-framework / framework

A WordPress plugin and theme framework
https://radiate-framework.github.io/
MIT License
4 stars 0 forks source link

CRON Scheduler #120

Closed BenRutlandWeb closed 3 years ago

BenRutlandWeb commented 3 years ago

Is your feature request related to a problem? Please describe. The ability to simply create scheduled tasks.

Describe the solution you'd like A CRON-like scheduler to wrap wp_schedule_event.

Describe alternatives you've considered Native WP functions, custom CRON tasks

Additional context

BenRutlandWeb commented 3 years ago

https://gist.github.com/BenRutlandWeb/2ed66b7e9578bdf23276891bb7db6159

A very rough version of the scheduler

BenRutlandWeb commented 3 years ago

Is the name required? As the events are non-recurring, a UUID could be generated for each job? That way a closure could be passed. OR, will it create many events for the same timing?

BenRutlandWeb commented 3 years ago

Is the name required? As the events are non-recurring, a UUID could be generated for each job? That way a closure could be passed. OR, will it create many events for the same timing?

Yes, otherwise the same event will be registered on every page load.