tgstation-server  4.4.0
The /tg/station 13 server suite
IServer.cs
Go to the documentation of this file.
1 using System.Threading;
2 using System.Threading.Tasks;
3 
4 namespace Tgstation.Server.Host
5 {
9  public interface IServer
10  {
14  bool RestartRequested { get; }
15 
21  Task Run(CancellationToken cancellationToken);
22  }
23 }
Represents the host
Definition: IServer.cs:9