use of me.lucko.luckperms.common.tasks.ExpireTemporaryTask in project LuckPerms by lucko.
the class LPBukkitPlugin method registerHousekeepingTasks.
@Override
protected void registerHousekeepingTasks() {
this.bootstrap.getScheduler().asyncRepeating(new ExpireTemporaryTask(this), 60L);
this.bootstrap.getScheduler().asyncRepeating(new CacheHousekeepingTask(this), 2400L);
}
use of me.lucko.luckperms.common.tasks.ExpireTemporaryTask in project LuckPerms by lucko.
the class LPBungeePlugin method registerHousekeepingTasks.
@Override
protected void registerHousekeepingTasks() {
this.bootstrap.getScheduler().asyncRepeating(new ExpireTemporaryTask(this), 60L);
this.bootstrap.getScheduler().asyncRepeating(new CacheHousekeepingTask(this), 2400L);
}
use of me.lucko.luckperms.common.tasks.ExpireTemporaryTask in project LuckPerms by lucko.
the class LPSpongePlugin method registerHousekeepingTasks.
@Override
protected void registerHousekeepingTasks() {
this.bootstrap.getScheduler().asyncRepeating(new ExpireTemporaryTask(this), 60L);
this.bootstrap.getScheduler().asyncRepeating(new CacheHousekeepingTask(this), 2400L);
this.bootstrap.getScheduler().asyncRepeating(new ServiceCacheHousekeepingTask(this.service), 2400L);
}
use of me.lucko.luckperms.common.tasks.ExpireTemporaryTask in project LuckPerms by lucko.
the class LPNukkitPlugin method registerHousekeepingTasks.
@Override
protected void registerHousekeepingTasks() {
this.bootstrap.getScheduler().asyncRepeating(new ExpireTemporaryTask(this), 60L);
this.bootstrap.getScheduler().asyncRepeating(new CacheHousekeepingTask(this), 2400L);
}
Aggregations