You are here

public function JobTypeBase::getRetryDelay in Advanced Queue 8

Gets the retry delay.

Represents the number of seconds that should pass before a retried job becomes available again.

Return value

int The retry delay.

Overrides JobTypeInterface::getRetryDelay

File

src/Plugin/AdvancedQueue/JobType/JobTypeBase.php, line 29

Class

JobTypeBase
Provides the base class for job types.

Namespace

Drupal\advancedqueue\Plugin\AdvancedQueue\JobType

Code

public function getRetryDelay() {
  return $this->pluginDefinition['retry_delay'];
}