Writer fixes

This commit is contained in:
Daniel Mills
2020-12-29 06:14:18 -05:00
parent ee557d8191
commit f4eb0cfbcb
9 changed files with 417 additions and 16 deletions

View File

@@ -83,4 +83,12 @@ public class MultiBurst
service.execute(o);
}
}
public void shutdownNow() {
service.shutdownNow().forEach(Runnable::run);
}
public void shutdown() {
service.shutdown();
}
}