mirror of
https://github.com/SimplexDevelopment/FreedomNetworkSuite.git
synced 2025-07-05 14:56:41 +00:00
11 lines
181 B
Java
11 lines
181 B
Java
package me.totalfreedom.api;
|
|
|
|
import java.util.function.Consumer;
|
|
|
|
public interface Interruptable
|
|
{
|
|
boolean canInterrupt();
|
|
|
|
void interrupt(Consumer<Throwable> callback);
|
|
}
|