interface SupportsDeletingJobsInterface in Advanced Queue 8
Provides the interface for queue backends which support deleting jobs.
Hierarchy
- interface \Drupal\advancedqueue\Plugin\AdvancedQueue\Backend\SupportsDeletingJobsInterface
Expanded class hierarchy of SupportsDeletingJobsInterface
All classes that implement SupportsDeletingJobsInterface
1 file declares its use of SupportsDeletingJobsInterface
- DeleteJob.php in src/
Form/ DeleteJob.php
File
- src/
Plugin/ AdvancedQueue/ Backend/ SupportsDeletingJobsInterface.php, line 8
Namespace
Drupal\advancedqueue\Plugin\AdvancedQueue\BackendView source
interface SupportsDeletingJobsInterface {
/**
* Deletes the job with the given ID.
*
* @param string $job_id
* The job ID.
*/
public function deleteJob($job_id);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
SupportsDeletingJobsInterface:: |
public | function | Deletes the job with the given ID. | 1 |