tgstation-server  4.4.0
The /tg/station 13 server suite
ISessionPersistor.cs
Go to the documentation of this file.
1 using System.Threading;
2 using System.Threading.Tasks;
3 
4 namespace Tgstation.Server.Host.Components.Session
5 {
9  public interface ISessionPersistor
10  {
17  Task Save(ReattachInformation reattachInformation, CancellationToken cancellationToken);
18 
24  Task<ReattachInformation> Load(CancellationToken cancellationToken);
25  }
26 }
Handles saving and loading ReattachInformation.
Parameters necessary for duplicating a ISessionController session