tgstation-server  4.3.2
The /tg/station 13 server suite
IProcessBase.cs
Go to the documentation of this file.
1 using System;
2 using System.Threading.Tasks;
3 
4 namespace Tgstation.Server.Host.System
5 {
10  {
14  Task<int> Lifetime { get; }
15 
19  void SetHighPriority();
20 
24  void Suspend();
25 
29  void Resume();
30  }
31 }
Represents process lifetime
Definition: IProcessBase.cs:9