All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fathzer.games.util.exec.Interruptible Maven / Gradle / Ivy

The newest version!
package com.fathzer.games.util.exec;

/** A task that can be interrupted
 */
public interface Interruptible {
    
    /** Interrupts the current search */
	void interrupt();

    /** Tests if the search was interrupted.
     * @return true if the search was interrupted, false otherwise
     */
	boolean isInterrupted();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy