.NET API
TraconStorageMeta
Tracon.AspNetCore.dllReports which storage implementations are active.
public sealed record TraconStorageMeta : IEquatable<TraconStorageMeta>Inheritance
Section titled “Inheritance”Implements
Section titled “Implements”Inherited Members
Section titled “Inherited Members”object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Remarks
Section titled “Remarks”In-memory stores are a supported mode, not a test helper. They do have limits, however — process lifetime and single node — and the UI should be able to show this to the user.
Constructors
Section titled “Constructors”TraconStorageMeta()
Section titled “ TraconStorageMeta()”public TraconStorageMeta()Properties
Section titled “Properties”AgentDefinitionStore
Section titled “ AgentDefinitionStore”Type name of the agent definition store.
public required string AgentDefinitionStore { get; init; }Property Value
Section titled “Property Value”JobStore
Section titled “ JobStore”Type name of the job queue store.
public required string JobStore { get; init; }Property Value
Section titled “Property Value”JobWorkerEnabled
Section titled “ JobWorkerEnabled”Whether the background job worker is running in this process. If false, the queue can still be written to and read from; only this process does not lease jobs.
public required bool JobWorkerEnabled { get; init; }Property Value
Section titled “Property Value”Persistent
Section titled “ Persistent”Whether all three stores are persistent. Returns false if any is in-memory.
public required bool Persistent { get; init; }Property Value
Section titled “Property Value”RunStore
Section titled “ RunStore”Type name of the run store.
public required string RunStore { get; init; }Property Value
Section titled “Property Value”SessionStore
Section titled “ SessionStore”Type name of the session store.
public required string SessionStore { get; init; }Property Value
Section titled “Property Value”Methods
Section titled “Methods”Equals(object?)
Section titled “ Equals(object?)”public override bool Equals(object? obj)Parameters
Section titled “Parameters”obj object?
Returns
Section titled “Returns”Equals(TraconStorageMeta?)
Section titled “ Equals(TraconStorageMeta?)”public bool Equals(TraconStorageMeta? other)Parameters
Section titled “Parameters”other TraconStorageMeta?
Returns
Section titled “Returns”GetHashCode()
Section titled “ GetHashCode()”public override int GetHashCode()Returns
Section titled “Returns”ToString()
Section titled “ ToString()”public override string ToString()Returns
Section titled “Returns”Operators
Section titled “Operators”operator ==(TraconStorageMeta?, TraconStorageMeta?)
Section titled “ operator ==(TraconStorageMeta?, TraconStorageMeta?)”public static bool operator ==(TraconStorageMeta? left, TraconStorageMeta? right)Parameters
Section titled “Parameters”left TraconStorageMeta?
right TraconStorageMeta?
Returns
Section titled “Returns”operator !=(TraconStorageMeta?, TraconStorageMeta?)
Section titled “ operator !=(TraconStorageMeta?, TraconStorageMeta?)”public static bool operator !=(TraconStorageMeta? left, TraconStorageMeta? right)Parameters
Section titled “Parameters”left TraconStorageMeta?
right TraconStorageMeta?