tgstation-server 5.12.7
The /tg/station 13 server suite
Loading...
Searching...
No Matches
IInstanceOperations.cs
Go to the documentation of this file.
1using System.Threading;
2using System.Threading.Tasks;
3
5
7{
11 public interface IInstanceOperations
12 {
19 Task OnlineInstance(Models.Instance metadata, CancellationToken cancellationToken);
20
28 Task OfflineInstance(Models.Instance metadata, User user, CancellationToken cancellationToken);
29
37 Task MoveInstance(Models.Instance metadata, string oldPath, CancellationToken cancellationToken);
38 }
39}
Operations that can be performed on a given Models.Instance.
Task MoveInstance(Models.Instance metadata, string oldPath, CancellationToken cancellationToken)
Move an IInstance.
Task OfflineInstance(Models.Instance metadata, User user, CancellationToken cancellationToken)
Offline an IInstance.
Task OnlineInstance(Models.Instance metadata, CancellationToken cancellationToken)
Online an IInstance.