diff --git a/README.md b/README.md index 23c8cfb..56b8068 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,7 @@ Then, you should use the Service Manager to create some new service pools. You can use `ServicePool#emptyBukkitServicePool(String, JavaPlugin)` for a service pool which will operate on the main server thread, or you can use `ServicePool#emptyServicePool(String, boolean)` for a completely separate, non-blocking scheduler which can be either singular or multithreaded. You should also use the service manager stream to register your services, and assign a Flux object so we can cancel the services later on in `JavaPlugin#onDisable()`. ```Java + private SchedulingSystem scheduler; private Flux disposables; @Override