AgentPrismStorageMeta
AgentPrism.AspNetCore.dllReports which storage implementations are active.
public sealed record AgentPrismStorageMeta : IEquatable<AgentPrismStorageMeta>Inheritance
Section titled “Inheritance”object ← AgentPrismStorageMeta
Implements
Section titled “Implements”IEquatable<AgentPrismStorageMeta>
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”AgentPrismStorageMeta()
Section titled “ AgentPrismStorageMeta()”public AgentPrismStorageMeta()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(AgentPrismStorageMeta?)
Section titled “ Equals(AgentPrismStorageMeta?)”public bool Equals(AgentPrismStorageMeta? other)Parameters
Section titled “Parameters”other AgentPrismStorageMeta?
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 ==(AgentPrismStorageMeta?, AgentPrismStorageMeta?)
Section titled “ operator ==(AgentPrismStorageMeta?, AgentPrismStorageMeta?)”public static bool operator ==(AgentPrismStorageMeta? left, AgentPrismStorageMeta? right)Parameters
Section titled “Parameters”left AgentPrismStorageMeta?
right AgentPrismStorageMeta?
Returns
Section titled “Returns”operator !=(AgentPrismStorageMeta?, AgentPrismStorageMeta?)
Section titled “ operator !=(AgentPrismStorageMeta?, AgentPrismStorageMeta?)”public static bool operator !=(AgentPrismStorageMeta? left, AgentPrismStorageMeta? right)Parameters
Section titled “Parameters”left AgentPrismStorageMeta?
right AgentPrismStorageMeta?