forked from Fascinated/Bat
impl pre shutdown saving
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
package cc.fascinated.bat.service;
|
||||
|
||||
import cc.fascinated.bat.common.TimerUtils;
|
||||
import cc.fascinated.bat.event.EventListener;
|
||||
import cc.fascinated.bat.model.BatUser;
|
||||
import com.mongodb.client.model.Filters;
|
||||
import lombok.Getter;
|
||||
@ -22,7 +23,7 @@ import java.util.concurrent.TimeUnit;
|
||||
@Log4j2(topic = "User Service")
|
||||
@Getter
|
||||
@DependsOn({"discordService", "mongoService"})
|
||||
public class UserService {
|
||||
public class UserService implements EventListener {
|
||||
private static final long SAVE_INTERVAL = TimeUnit.MINUTES.toMillis(5);
|
||||
|
||||
/**
|
||||
@ -67,4 +68,13 @@ public class UserService {
|
||||
log.info("Created user \"{}\" - \"{}\"", user.getName(), user.getId());
|
||||
return user;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onSpringShutdown() {
|
||||
log.info("Saving all users before shutdown...");
|
||||
for (BatUser user : users.values()) {
|
||||
user.save();
|
||||
}
|
||||
log.info("Saved all users.");
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user