接口 BukkitTask
public interface BukkitTask
代表由调度器执行的任务.
-
方法概要
-
方法详细资料
-
getTaskId
int getTaskId()返回这个任务的任务id.原文:Returns the taskId for the task.
- 返回:
- 任务id编号
-
getOwner
返回拥有这个任务的插件.原文:Returns the Plugin that owns this task.
- 返回:
- 拥有这个任务的插件
-
isSync
boolean isSync()如果这个任务是同步任务则返回true.原文:Returns true if the Task is a sync task.
- 返回:
- 如果这个任务由主线程运行,则为true
-
isCancelled
boolean isCancelled()若该任务已被取消则返回true.原文:Returns true if this task has been cancelled.
- 返回:
- 若该任务已被取消则返回true
-
cancel
void cancel()尝试取消该任务.原文:Will attempt to cancel this task.
-