Start working on plugin epoch async yield

This commit is contained in:
Isaac Clayton 2022-07-12 16:32:41 +02:00
parent 8bcfcce506
commit 170d27b04c
2 changed files with 17 additions and 6 deletions

View file

@ -60,7 +60,7 @@ fn main() {
fn create_default_engine() -> Engine {
let mut config = Config::default();
config.async_support(true);
// config.epoch_interruption(true);
config.epoch_interruption(true);
Engine::new(&config).expect("Could not create engine")
}