tgstation-server  4.4.0
The /tg/station 13 server suite
IInstanceManager.cs
Go to the documentation of this file.
1 using System.Threading;
2 using System.Threading.Tasks;
5 
6 namespace Tgstation.Server.Host.Components
7 {
12  {
16  Task Ready { get; }
17 
23  IInstance GetInstance(Models.Instance metadata);
24 
31  Task OnlineInstance(Models.Instance metadata, CancellationToken cancellationToken);
32 
40  Task OfflineInstance(Models.Instance metadata, User user, CancellationToken cancellationToken);
41 
49  Task MoveInstance(Models.Instance metadata, string newPath, CancellationToken cancellationToken);
50  }
51 }
For interacting with the instance services
Definition: IInstance.cs:16