Newer
Older
ultramine_bukkit / src / main / java / org / bukkit / scheduler / BukkitTask.java
@vlad20012 vlad20012 on 24 Feb 2017 598 bytes initial
package org.bukkit.scheduler;

import org.bukkit.plugin.Plugin;

/**
 * Represents a task being executed by the scheduler
 */
public interface BukkitTask
{

	/**
	 * Returns the taskId for the task.
	 *
	 * @return Task id number
	 */
	public int getTaskId();

	/**
	 * Returns the Plugin that owns this task.
	 *
	 * @return The Plugin that owns the task
	 */
	public Plugin getOwner();

	/**
	 * Returns true if the Task is a sync task.
	 *
	 * @return true if the task is run by main thread
	 */
	public boolean isSync();

	/**
	 * Will attempt to cancel this task.
	 */
	public void cancel();
}