IDeploymentStateManager
Interfacenet10.0
Provides deployment state management functionality.
namespace Aspire.Hosting.Pipelines;
public interface IDeploymentStateManager{ // ...}5 members
Properties1
Section titled PropertiesView all properties
Methods4
Section titled Methods Acquires a specific section of the deployment state with version tracking for concurrency control. The returned section is an immutable snapshot of the data at the time of acquisition.
Task Clears all deployment state, removing all sections and the underlying storage.
Task Delete a section of deployment state with optimistic concurrency control. The section must have a matching version number or a concurrency exception will be thrown.
Task Saves a section of deployment state with optimistic concurrency control. The section must have a matching version number or a concurrency exception will be thrown.