Run database migrations in parallel with the rest of game startup to improve load times.

This commit is contained in:
Pieter-Jan Briers
2020-01-25 16:16:34 +01:00
parent 4a833e82cd
commit fbe7533d4b
3 changed files with 18 additions and 4 deletions

View File

@@ -5,8 +5,9 @@ namespace Content.Server.Interfaces
{
public interface IServerPreferencesManager
{
void Initialize();
void FinishInit();
void OnClientConnected(IPlayerSession session);
PlayerPreferences GetPreferences(string username);
void StartInit();
}
}