Table of Contents

Class StoreDiagnostics

Namespace
Shard.Stores
Assembly
Shard.Stores.dll

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

StoreName string

Name of the Store

OwnerThreadId int

Managed thread id that owns the Store.

PendingCommands int

Number of pending commands queued by the owning world.

Properties

OwnerThreadId

Managed thread id that owns the Store.

public int OwnerThreadId { get; init; }

Property Value

int

PendingCommands

Number of pending commands queued by the owning world.

public int PendingCommands { get; init; }

Property Value

int

StoreName

Name of the Store

public string StoreName { get; init; }

Property Value

string