Closed tobymurray closed 1 year ago
The example was updated to await JobScheduler::new(), but this returns a Result so the current example code:
JobScheduler::new()
Result
let mut sched = JobScheduler::new().await; sched.add...
doesn't compile.
no method named `add` found for enum `Result` in the current scope
The example was updated to await
JobScheduler::new()
, but this returns aResult
so the current example code:doesn't compile.