AuthMe/AuthMeReloaded

View on GitHub
src/main/java/fr/xephi/authme/initialization/HasCleanup.java

Summary

Maintainability
A
0 mins
Test Coverage
package fr.xephi.authme.initialization;

/**
 * Common interface for types which have data that becomes outdated
 * and that can be cleaned up periodically.
 *
 * @see fr.xephi.authme.task.CleanupTask
 */
public interface HasCleanup {

    /**
     * Performs the cleanup action.
     */
    void performCleanup();

}