DQueueJobInterface.php 193 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace App\Module\LCache;
  3. interface DQueueJobInterface
  4. {
  5. /**
  6. * 获取延迟时间
  7. *
  8. * @return int
  9. */
  10. static public function getDelay(): int;
  11. }