MCPcopy Create free account
hub / github.com/apache/maka / releaseExecutionClaim

Method releaseExecutionClaim

packages/runtime/src/runtime-kernel.ts:599–607  ·  view source on GitHub ↗
(execution: PendingExecutionClaim)

Source from the content-addressed store, hash-verified

597 }
598
599 private releaseExecutionClaim(execution: PendingExecutionClaim): void {
600 if (execution.phase !== 'pending' && execution.phase !== 'attached') return;
601 if (execution.phase === 'attached' && execution.stopIntent) {
602 this.settleStoppedAttachedExecution(execution);
603 return;
604 }
605 execution.phase = 'released';
606 this.settleExecutionClaim(execution, { ok: true });
607 }
608
609 private settleExecutionClaim(
610 execution: PendingExecutionClaim,

Callers 7

claimExecutionMethod · 0.95
startTurnMethod · 0.95
resumeContinuationMethod · 0.95
compactSessionMethod · 0.95
startChildTurnMethod · 0.95
startChildRetryMethod · 0.95

Calls 2

settleExecutionClaimMethod · 0.95

Tested by

no test coverage detected