Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
namespace Aevatar.GAgents.StudioMember;

/// <summary>
/// Admits and executes platform-side binding work for an admitted StudioMember binding run.
/// <see cref="StartAsync"/> returns an accepted receipt only. <see cref="ExecuteAsync"/>
/// starts the platform work and reports completion or failure back to the run actor
/// through a later continuation event. Callers must only invoke it from a durable
/// actor state that can re-drive the same command after activation.
/// </summary>
public interface IStudioMemberPlatformBindingCommandPort
{
Task<StudioMemberPlatformBindingAccepted> StartAsync(
string replyActorId,
StudioMemberPlatformBindingStartRequested request,
CancellationToken ct = default);

Task ExecuteAsync(
string replyActorId,
string platformBindingCommandId,
StudioMemberPlatformBindingStartRequested request,
CancellationToken ct = default);
}
Loading
Loading