12 lines
550 B
C#
12 lines
550 B
C#
namespace ClaudeDo.Ui.Services;
|
|
|
|
public interface IWorkerClient
|
|
{
|
|
Task WakeQueueAsync();
|
|
Task StartPlanningSessionAsync(string taskId, CancellationToken ct = default);
|
|
Task ResumePlanningSessionAsync(string taskId, CancellationToken ct = default);
|
|
Task DiscardPlanningSessionAsync(string taskId, CancellationToken ct = default);
|
|
Task FinalizePlanningSessionAsync(string taskId, bool queueAgentTasks = true, CancellationToken ct = default);
|
|
Task<int> GetPendingDraftCountAsync(string taskId, CancellationToken ct = default);
|
|
}
|