Action Scheduler
Description
Install
Structure
class MyQueue extends AbstractASQueue {
public function __construct(string $prefix){
parent::__construct('my-group', $prefix);
}
}Last updated
class MyQueue extends AbstractASQueue {
public function __construct(string $prefix){
parent::__construct('my-group', $prefix);
}
}Last updated
class MyQueueRunner extends AbstractQueueRunner {
public function __construct( string $prefix, string $translation_key, ActionScheduler_Store $store = null, ActionScheduler_FatalErrorMonitor $monitor = null, ActionScheduler_QueueCleaner $cleaner = null, ActionScheduler_AsyncRequest_QueueRunner $async_request = null, ActionScheduler_Compatibility $compatibility = null, ActionScheduler_Lock $locker = null ) {
parent::__construct('my-group', $prefix, $translation_key, $store, $monitor, $cleaner, $async_request, $compatibility, $locker);
}
}