From de49e94f3d1b765de2069f8aafc1633702e7e9d7 Mon Sep 17 00:00:00 2001 From: Tommy Date: Mon, 20 Nov 2023 13:16:35 +0000 Subject: [PATCH] correct documentation regarding ExclusiveThreadPoolScheduler --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e4a39cb..8e39af2 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,8 @@ if (!Schedulers.isLoaded()) { } ``` -The `futur-standalone` module has two scheduler implementations available. The `ExclusiveThreadPoolScheduler` operates one thread pool, and ignores whether a task is due to be executed sync or async -and uses the single pool regardless. The `ThreadPoolScheduler` uses a single-threaded "main" pool and a multi-threaded async pool. +The `futur-standalone` module has two scheduler implementations available. The `ExclusiveThreadPoolScheduler` operates one thread pool, and throws an exception when sync tasks are attempted to be executed. +The `ThreadPoolScheduler` uses a single-threaded "main" pool and a multi-threaded async pool. For Minecraft, Bukkit, Velocity and BungeeCord support is coming soon. Feel free to make PRs for other external library support as modules.