mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-23 19:15:32 +01:00
implementation of isQueued()
This commit is contained in:
parent
6335a5af76
commit
6269c1e633
@ -223,4 +223,18 @@ public class CraftScheduler implements BukkitScheduler, Runnable {
|
|||||||
public boolean isCurrentlyRunning(int taskId){
|
public boolean isCurrentlyRunning(int taskId){
|
||||||
return craftThreadManager.isAlive(taskId);
|
return craftThreadManager.isAlive(taskId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean isQueued(int taskId) {
|
||||||
|
synchronized (schedulerQueue) {
|
||||||
|
Iterator<CraftTask> itr = schedulerQueue.keySet().iterator();
|
||||||
|
while (itr.hasNext()) {
|
||||||
|
CraftTask current = itr.next();
|
||||||
|
if (current.getIdNumber() == taskId) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user