You are here

interface SupportsReleasingJobsInterface in Advanced Queue 8

Provides the interface for queue backends which support releasing jobs.

Hierarchy

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\Backend
View source
interface SupportsReleasingJobsInterface {

  /**
   * Releases the job with the given ID.
   *
   * @param string $job_id
   *   The job ID.
   */
  public function releaseJob($job_id);

}

Members

Namesort descending Modifiers Type Description Overrides
SupportsReleasingJobsInterface::releaseJob public function Releases the job with the given ID. 1