tgstation-server  4.4.0
The /tg/station 13 server suite
IProcessBase.cs
Go to the documentation of this file.
1 using System;
2 using System.Threading;
3 using System.Threading.Tasks;
4 
5 namespace Tgstation.Server.Host.System
6 {
11  {
15  Task<int> Lifetime { get; }
16 
20  void SetHighPriority();
21 
25  void Suspend();
26 
30  void Resume();
31 
38  Task CreateDump(string outputFile, CancellationToken cancellationToken);
39  }
40 }
Represents process lifetime
Definition: IProcessBase.cs:10