using ZB.MOM.WW.OtOpcUa.Commons.Messages.Admin;
namespace ZB.MOM.WW.OtOpcUa.Commons.Interfaces;
///
/// Cluster-singleton-proxy client for the AdminOperationsActor. The Blazor UI calls
/// this from any host (admin or driver role); the proxy routes the request to whichever node
/// holds the admin singleton.
///
public interface IAdminOperationsClient
{
/// Starts a new deployment on the cluster-singleton admin operations actor.
/// The user or system identifier triggering the deployment.
/// The cancellation token.
/// A task representing the asynchronous operation containing the deployment start result.
Task StartDeploymentAsync(string createdBy, CancellationToken ct);
}