aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/api/0250-Add-getMainThreadExecutor-to-BukkitScheduler.patch
diff options
context:
space:
mode:
authorRiley Park <[email protected]>2024-05-15 17:06:59 -0700
committerGitHub <[email protected]>2024-05-15 17:06:59 -0700
commitf17519338bc589c045e0b32bfc37e048b23544d5 (patch)
treee50182ec698b4a9de8f366f485ee089b1901bbd9 /patches/api/0250-Add-getMainThreadExecutor-to-BukkitScheduler.patch
parent3fc93581bb876e8149b2ca423375a98f5ca12d27 (diff)
downloadPaper-f17519338bc589c045e0b32bfc37e048b23544d5.tar.gz
Paper-f17519338bc589c045e0b32bfc37e048b23544d5.zip
Expose server build information (#10729)
* Expose server build information * squash patches * final tweaks --------- Co-authored-by: Jake Potrebic <[email protected]> Co-authored-by: masmc05 <[email protected]>
Diffstat (limited to 'patches/api/0250-Add-getMainThreadExecutor-to-BukkitScheduler.patch')
-rw-r--r--patches/api/0250-Add-getMainThreadExecutor-to-BukkitScheduler.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/patches/api/0250-Add-getMainThreadExecutor-to-BukkitScheduler.patch b/patches/api/0250-Add-getMainThreadExecutor-to-BukkitScheduler.patch
new file mode 100644
index 0000000000..7cc686da5a
--- /dev/null
+++ b/patches/api/0250-Add-getMainThreadExecutor-to-BukkitScheduler.patch
@@ -0,0 +1,26 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Aleksander Jagiello <[email protected]>
+Date: Sun, 24 Jan 2021 22:17:29 +0100
+Subject: [PATCH] Add getMainThreadExecutor to BukkitScheduler
+
+
+diff --git a/src/main/java/org/bukkit/scheduler/BukkitScheduler.java b/src/main/java/org/bukkit/scheduler/BukkitScheduler.java
+index 0368e9125e6d73449cfa22ec7bdabf274457f4c1..487b5ca23159b531475c3d650894be707b49914e 100644
+--- a/src/main/java/org/bukkit/scheduler/BukkitScheduler.java
++++ b/src/main/java/org/bukkit/scheduler/BukkitScheduler.java
+@@ -457,4 +457,15 @@ public interface BukkitScheduler {
+ @Deprecated
+ @NotNull
+ public BukkitTask runTaskTimerAsynchronously(@NotNull Plugin plugin, @NotNull BukkitRunnable task, long delay, long period) throws IllegalArgumentException;
++
++ // Paper start - add getMainThreadExecutor
++ /**
++ * Returns an executor that will run tasks on the next server tick.
++ *
++ * @param plugin the reference to the plugin scheduling tasks
++ * @return an executor associated with the given plugin
++ */
++ @NotNull
++ public java.util.concurrent.Executor getMainThreadExecutor(@NotNull Plugin plugin);
++ // Paper end
+ }