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\advancedqueueCode
public function getAvailableTime() {
return $this->available;
}