tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
LaunchResult.cs
Go to the documentation of this file.
1using System;
2using System.Globalization;
3
5{
9 public sealed class LaunchResult
10 {
14 public TimeSpan? StartupTime { get; init; }
15
19 public int? ExitCode { get; init; }
20
22 public override string ToString() => String.Format(CultureInfo.InvariantCulture, "Exit Code: {0}, Time {1}ms", ExitCode, StartupTime?.TotalMilliseconds);
23 }
24}
Represents the result of trying to start a DD process.
int? ExitCode
The global::System.Diagnostics.Process.ExitCode if it exited.
TimeSpan? StartupTime
The time it took for global::System.Diagnostics.Process.WaitForInputIdle() to return or the initial b...