A customizable, open-source ecommerce platform built on WordPress. Build any commerce solution you can imagine.
Go to file
Brent Shepherd 2492f1e0ed Squashed 'includes/libraries/action-scheduler/' content from commit 5f943d9
git-subtree-dir: includes/libraries/action-scheduler
git-subtree-split: 5f943d9de5f25f5a107ea21b8d42eff9ed9bf94e
2019-03-28 15:31:13 +10:00
.github Squashed 'includes/libraries/action-scheduler/' content from commit 5f943d9 2019-03-28 15:31:13 +10:00
classes Squashed 'includes/libraries/action-scheduler/' content from commit 5f943d9 2019-03-28 15:31:13 +10:00
deprecated Squashed 'includes/libraries/action-scheduler/' content from commit 5f943d9 2019-03-28 15:31:13 +10:00
docs Squashed 'includes/libraries/action-scheduler/' content from commit 5f943d9 2019-03-28 15:31:13 +10:00
lib/cron-expression Squashed 'includes/libraries/action-scheduler/' content from commit 5f943d9 2019-03-28 15:31:13 +10:00
tests Squashed 'includes/libraries/action-scheduler/' content from commit 5f943d9 2019-03-28 15:31:13 +10:00
.gitattributes Squashed 'includes/libraries/action-scheduler/' content from commit 5f943d9 2019-03-28 15:31:13 +10:00
.gitignore Squashed 'includes/libraries/action-scheduler/' content from commit 5f943d9 2019-03-28 15:31:13 +10:00
.travis.yml Squashed 'includes/libraries/action-scheduler/' content from commit 5f943d9 2019-03-28 15:31:13 +10:00
README.md Squashed 'includes/libraries/action-scheduler/' content from commit 5f943d9 2019-03-28 15:31:13 +10:00
action-scheduler.php Squashed 'includes/libraries/action-scheduler/' content from commit 5f943d9 2019-03-28 15:31:13 +10:00
codecov.yml Squashed 'includes/libraries/action-scheduler/' content from commit 5f943d9 2019-03-28 15:31:13 +10:00
composer.json Squashed 'includes/libraries/action-scheduler/' content from commit 5f943d9 2019-03-28 15:31:13 +10:00
composer.lock Squashed 'includes/libraries/action-scheduler/' content from commit 5f943d9 2019-03-28 15:31:13 +10:00
functions.php Squashed 'includes/libraries/action-scheduler/' content from commit 5f943d9 2019-03-28 15:31:13 +10:00
license.txt Squashed 'includes/libraries/action-scheduler/' content from commit 5f943d9 2019-03-28 15:31:13 +10:00

README.md

Action Scheduler - Job Queue for WordPress Build Status codecov

Action Scheduler is a scalable, traceable job queue for background processing large sets of actions in WordPress. It's specially designed to be distributed in WordPress plugins.

Action Scheduler works by triggering an action hook to run at some time in the future. Each hook can be scheduled with unique data, to allow callbacks to perform operations on that data. The hook can also be scheduled to run on one or more occassions.

Think of it like an extension to do_action() which adds the ability to delay and repeat a hook.

Battle-Tested Background Processing

Every month, Action Scheduler processes millions of payments for Subscriptions, webhooks for WooCommerce, as well as emails and other events for a range of other plugins.

It's been seen on live sites processing queues in excess of 50,000 jobs and doing resource intensive operations, like processing payments and creating orders, at a sustained rate of over 10,000 / hour without negatively impacting normal site operations.

This is all on infrastructure and WordPress sites outside the control of the plugin author.

If your plugin needs background processing, especially of large sets of tasks, Action Scheduler can help.

Learn More

To learn more about how to Action Scheduler works, and how to use it in your plugin, check out the docs on ActionScheduler.org.

There you will find:

Credits

Action Scheduler is developed and maintained by Prospress in collaboration with Flightless.

Collaboration is cool. We'd love to work with you to improve Action Scheduler. Pull Requests welcome.