From 0d91f860546b9bacd563dc3a2c7f15034f1f74df Mon Sep 17 00:00:00 2001 From: Paldiu Date: Thu, 15 Dec 2022 13:36:35 -0600 Subject: [PATCH 1/2] Update badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dd42129..23c8cfb 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![](https://img.shields.io/github/license/SimplexDevelopment/SimplexSS) ![](https://img.shields.io/github/languages/top/SimplexDevelopment/SimplexSS) - ![](https://img.shields.io/github/workflow/status/SimplexDevelopment/SimplexSS/CodeQL/main) + ![](https://img.shields.io/github/actions/workflow/status/SimplexDevelopment/SimplexSS/codeql.yml?branch=main) ![](https://img.shields.io/github/v/release/SimplexDevelopment/SimplexSS?include_prereleases) ![](https://jitpack.io/v/SimplexDevelopment/SimplexSS.svg) ![](https://img.shields.io/github/issues/SimplexDevelopment/SimplexSS) From cccd441432b1f2857bffe540ae4800f86f49d6d8 Mon Sep 17 00:00:00 2001 From: Paldiu Date: Thu, 15 Dec 2022 13:37:50 -0600 Subject: [PATCH 2/2] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) 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