tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
IServer.cs
Go to the documentation of this file.
1using System.Threading;
2using System.Threading.Tasks;
3
5{
9 public interface IServer
10 {
14 bool RestartRequested { get; }
15
21 ValueTask Run(CancellationToken cancellationToken);
22 }
23}
Represents the host.
Definition IServer.cs:10
ValueTask Run(CancellationToken cancellationToken)
Runs the IServer.
bool RestartRequested
If the IServer should restart.
Definition IServer.cs:14