resumeDueRuns method

Future<List<String>> resumeDueRuns([
  1. DateTime? now
])

Resumes and enqueues due runs through the runtime's policy/routing path.

Manual drivers that do not want dispatch can call runtime.resumeDueRuns(now: now, enqueue: false) explicitly.

Implementation

Future<List<String>> resumeDueRuns([DateTime? now]) =>
    runtime.resumeDueRuns(now: now);