Class StoreDiagnostics
Point-in-time Store diagnostics used for runtime inspection.
public sealed record StoreDiagnostics : IEquatable<StoreDiagnostics>
- Inheritance
-
StoreDiagnostics
- Implements
- Inherited Members
Constructors
StoreDiagnostics(string, int, int)
Point-in-time Store diagnostics used for runtime inspection.
public StoreDiagnostics(string StoreName, int OwnerThreadId, int PendingCommands)
Parameters
StoreNamestringName of the Store
OwnerThreadIdintManaged thread id that owns the Store.
PendingCommandsintNumber of pending commands queued by the owning world.
Properties
OwnerThreadId
Managed thread id that owns the Store.
public int OwnerThreadId { get; init; }
Property Value
PendingCommands
Number of pending commands queued by the owning world.
public int PendingCommands { get; init; }
Property Value
StoreName
Name of the Store
public string StoreName { get; init; }