11 lines
262 B
Java
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 {
|
|
}
|