use of me.lucko.luckperms.sponge.tasks.ServiceCacheHousekeepingTask 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);
}
Aggregations