You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 line
198B

  1. <?php
  2. namespace Framework\Queue\Driver;
  3. use Closure;
  4. use Framework\Queue\Job;
  5. interface Driver
  6. {
  7. public function push(Closure $closure, ...$params): int;
  8. public function shift(): ?Job;
  9. }

Powered by TurnKey Linux.