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