LoginSystem/src/main/java/fr/xephi/authme/process/AsynchronousProcess.java
2023-09-20 02:15:22 +08:00

11 lines
262 B
Java

package fr.xephi.authme.process;
/**
* Marker interface for asynchronous AuthMe processes.
* <p>
* These processes handle intensive (I/O or otherwise) actions and are
* therefore scheduled to run asynchronously.
*/
public interface AsynchronousProcess {
}