You are here

public function Job::getAvailableTime in Advanced Queue 8

Gets the availability timestamp.

Determines when the job should become available to consumers. Allows jobs to be scheduled in the future.

Return value

string The availability timestamp.

File

src/Job.php, line 336

Class

Job
Represents a job.

Namespace

Drupal\advancedqueue

Code

public function getAvailableTime() {
  return $this->available;
}