tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
IWatchdog.cs
Go to the documentation of this file.
1using System;
2using System.Threading;
3using System.Threading.Tasks;
4
6{
10 public interface IWatchdog
11 {
15 Task<Version> InitialHostVersion { get; }
16
24 ValueTask<bool> RunAsync(bool runConfigure, string[] args, CancellationToken cancellationToken);
25 }
26}
ValueTask< bool > RunAsync(bool runConfigure, string[] args, CancellationToken cancellationToken)
Run the IWatchdog.
Task< Version > InitialHostVersion
Gets a Task<TResult> resulting in the current version of the host process. Guaranteed to complete onc...
Definition IWatchdog.cs:15