@@ -27,8 +27,6 @@ export interface CriticalSectionInfo {
2727 * @remarks
2828 * Use this to release locks acquired via `lockEntities`.
2929 * Typically used in a try/finally block to ensure locks are released.
30- *
31- * Dotnet reference: IAsyncDisposable returned by LockEntitiesAsync
3230 */
3331export interface LockHandle {
3432 /**
@@ -45,8 +43,6 @@ export interface LockHandle {
4543 * - `callEntity` waits for a response from the entity.
4644 * - `signalEntity` is a one-way (fire-and-forget) operation that doesn't wait for a response.
4745 * - `lockEntities` acquires locks on multiple entities for critical sections.
48- *
49- * Dotnet reference: src/Abstractions/Entities/TaskOrchestrationEntityFeature.cs
5046 */
5147export interface OrchestrationEntityFeature {
5248 /**
@@ -64,8 +60,6 @@ export interface OrchestrationEntityFeature {
6460 * Unlike `signalEntity`, this method waits for the entity to process the operation
6561 * and returns the result. If the entity operation throws an exception, this method
6662 * will throw an `EntityOperationFailedException` containing the failure details.
67- *
68- * Dotnet reference: TaskOrchestrationEntityFeature.CallEntityAsync
6963 */
7064 callEntity < TResult = void > (
7165 id : EntityInstanceId ,
@@ -86,8 +80,6 @@ export interface OrchestrationEntityFeature {
8680 * This is a fire-and-forget operation. The orchestration will not wait for
8781 * the entity operation to complete. Use `callEntity` if you need to wait
8882 * for a response.
89- *
90- * Dotnet reference: TaskOrchestrationEntityFeature.SignalEntityAsync
9183 */
9284 signalEntity (
9385 id : EntityInstanceId ,
@@ -114,8 +106,6 @@ export interface OrchestrationEntityFeature {
114106 * - You can call (but not signal) the locked entities
115107 * - You cannot call sub-orchestrations
116108 * - You cannot acquire additional locks (no nested critical sections)
117- *
118- * Dotnet reference: TaskOrchestrationEntityFeature.LockEntitiesAsync
119109 */
120110 lockEntities ( ...entityIds : EntityInstanceId [ ] ) : Task < LockHandle > ;
121111
@@ -124,8 +114,6 @@ export interface OrchestrationEntityFeature {
124114 *
125115 * @returns Information about the current critical section state.
126116 *
127- * @remarks
128- * Dotnet reference: TaskOrchestrationEntityFeature.InCriticalSection
129117 */
130118 isInCriticalSection ( ) : CriticalSectionInfo ;
131119}
0 commit comments