• 0 Posts
  • 1 Comment
Joined 1Y ago
cake
Cake day: Jun 13, 2023

help-circle
rss

Can you use async in your project?

If Yes, you can spawn a task that will listen on a channel. If you need to run them in parallel probably you can find a mpmc channel.

If you need for them to run at a specific time, spawn task ,tokio::time::sleep , run job, loop.

Don’t know any crate just for this.