(command: QueuedCommand)
| 2876 | } |
| 2877 | |
| 2878 | const enqueueAndRun = (command: QueuedCommand): void => { |
| 2879 | enqueue({ |
| 2880 | ...command, |
| 2881 | uuid: randomUUID(), |
| 2882 | }) |
| 2883 | void run() |
| 2884 | } |
| 2885 | |
| 2886 | cronScheduler = cronSchedulerModule.createCronScheduler({ |
| 2887 | onFire: prompt => { |