Restructure solution layout by module
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System.Threading;
|
||||
|
||||
namespace StellaOps.Policy.Engine.Hosting;
|
||||
|
||||
internal sealed class PolicyEngineStartupDiagnostics
|
||||
{
|
||||
private int isReady;
|
||||
|
||||
public bool IsReady => Volatile.Read(ref isReady) == 1;
|
||||
|
||||
public void MarkReady() => Volatile.Write(ref isReady, 1);
|
||||
}
|
||||
Reference in New Issue
Block a user