Skip to content

v0.11.0 - Job scheduler now has configurable channel size

Compare
Choose a tag to compare
@mvniekerk mvniekerk released this 09 Aug 20:12
· 20 commits to main since this release
47059ed

JobScheduler::new_with_channel_size(1000).await;
The default is 200 when calling JobScheduler::new().await;

This addition allows alleviation of task runner starvation. Stems from Issue #65 and #61 .

Enjoy!