basic 1.2.0 changes

This commit is contained in:
tommyskeff
2023-12-22 16:43:52 +00:00
parent 11ed692e75
commit 173e34810c
16 changed files with 799 additions and 500 deletions

View File

@@ -23,7 +23,7 @@ public interface Scheduler {
void runRepeatingAsync(@NotNull Runnable task, long interval, @NotNull TimeUnit unit, @NotNull ExecutorTrace trace);
default @NotNull Runnable wrapExceptions(@NotNull Runnable task, @NotNull ExecutorTrace trace) {
static @NotNull Runnable wrapExceptions(@NotNull Runnable task, @NotNull ExecutorTrace trace) {
return () -> {
try {
task.run();