
com.fathzer.games.util.exec.Interruptible Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of games-core Show documentation
Show all versions of games-core Show documentation
A core library to help implement two players games.
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