@@ -309,7 +309,6 @@ public Task<TQueryResult> QueryAsync<TQueryResult>(
309
309
/// <param name="updateCall">Invocation of workflow update method.</param>
310
310
/// <param name="options">Update options. Currently <c>WaitForStage</c> is required.</param>
311
311
/// <returns>Workflow update handle.</returns>
312
- /// <remarks>WARNING: Workflow update is experimental and APIs may change.</remarks>
313
312
public Task < WorkflowUpdateHandle > StartUpdateAsync < TWorkflow > (
314
313
Expression < Func < TWorkflow , Task > > updateCall , WorkflowUpdateStartOptions options )
315
314
{
@@ -328,7 +327,6 @@ public Task<WorkflowUpdateHandle> StartUpdateAsync<TWorkflow>(
328
327
/// <param name="updateCall">Invocation of workflow update method.</param>
329
328
/// <param name="options">Update options. Currently <c>WaitForStage</c> is required.</param>
330
329
/// <returns>Workflow update handle.</returns>
331
- /// <remarks>WARNING: Workflow update is experimental and APIs may change.</remarks>
332
330
public Task < WorkflowUpdateHandle < TUpdateResult > > StartUpdateAsync < TWorkflow , TUpdateResult > (
333
331
Expression < Func < TWorkflow , Task < TUpdateResult > > > updateCall ,
334
332
WorkflowUpdateStartOptions options )
@@ -347,7 +345,6 @@ public Task<WorkflowUpdateHandle<TUpdateResult>> StartUpdateAsync<TWorkflow, TUp
347
345
/// <param name="args">Arguments for the update.</param>
348
346
/// <param name="options">Update options. Currently <c>WaitForStage</c> is required.</param>
349
347
/// <returns>Workflow update handle.</returns>
350
- /// <remarks>WARNING: Workflow update is experimental and APIs may change.</remarks>
351
348
public async Task < WorkflowUpdateHandle > StartUpdateAsync (
352
349
string update , IReadOnlyCollection < object ? > args , WorkflowUpdateStartOptions options ) =>
353
350
await StartUpdateAsync < ValueTuple > ( update , args , options ) . ConfigureAwait ( false ) ;
@@ -360,7 +357,6 @@ public async Task<WorkflowUpdateHandle> StartUpdateAsync(
360
357
/// <param name="args">Arguments for the update.</param>
361
358
/// <param name="options">Update options. Currently <c>WaitForStage</c> is required.</param>
362
359
/// <returns>Workflow update handle.</returns>
363
- /// <remarks>WARNING: Workflow update is experimental and APIs may change.</remarks>
364
360
public Task < WorkflowUpdateHandle < TUpdateResult > > StartUpdateAsync < TUpdateResult > (
365
361
string update , IReadOnlyCollection < object ? > args , WorkflowUpdateStartOptions options ) =>
366
362
Client . OutboundInterceptor . StartWorkflowUpdateAsync < TUpdateResult > ( new (
@@ -378,9 +374,6 @@ public Task<WorkflowUpdateHandle<TUpdateResult>> StartUpdateAsync<TUpdateResult>
378
374
/// +
379
375
/// <see cref="WorkflowUpdateHandle.GetResultAsync(RpcOptions?)" />.
380
376
/// </summary>
381
- /// <remarks>WARNING: Workflow update is experimental and APIs may change. Currently this
382
- /// API will timeout on long update requests instead of properly polling for their
383
- /// completion.</remarks>
384
377
/// <typeparam name="TWorkflow">Workflow class type.</typeparam>
385
378
/// <param name="updateCall">Invocation of workflow update method.</param>
386
379
/// <param name="options">Extra options.</param>
@@ -401,9 +394,6 @@ public async Task ExecuteUpdateAsync<TWorkflow>(
401
394
/// +
402
395
/// <see cref="WorkflowUpdateHandle{TResult}.GetResultAsync(RpcOptions?)" />.
403
396
/// </summary>
404
- /// <remarks>WARNING: Workflow update is experimental and APIs may change. Currently this
405
- /// API will timeout on long update requests instead of properly polling for their
406
- /// completion.</remarks>
407
397
/// <typeparam name="TWorkflow">Workflow class type.</typeparam>
408
398
/// <typeparam name="TUpdateResult">Update result type.</typeparam>
409
399
/// <param name="updateCall">Invocation of workflow update method.</param>
@@ -424,9 +414,6 @@ public async Task<TUpdateResult> ExecuteUpdateAsync<TWorkflow, TUpdateResult>(
424
414
/// +
425
415
/// <see cref="WorkflowUpdateHandle.GetResultAsync(RpcOptions?)" />.
426
416
/// </summary>
427
- /// <remarks>WARNING: Workflow update is experimental and APIs may change. Currently this
428
- /// API will timeout on long update requests instead of properly polling for their
429
- /// completion.</remarks>
430
417
/// <param name="update">Update name.</param>
431
418
/// <param name="args">Update args.</param>
432
419
/// <param name="options">Extra options.</param>
@@ -447,9 +434,6 @@ public async Task ExecuteUpdateAsync(
447
434
/// +
448
435
/// <see cref="WorkflowUpdateHandle.GetResultAsync(RpcOptions?)" />.
449
436
/// </summary>
450
- /// <remarks>WARNING: Workflow update is experimental and APIs may change. Currently this
451
- /// API will timeout on long update requests instead of properly polling for their
452
- /// completion.</remarks>
453
437
/// <typeparam name="TUpdateResult">Update result type.</typeparam>
454
438
/// <param name="update">Update name.</param>
455
439
/// <param name="args">Update args.</param>
@@ -470,7 +454,6 @@ public async Task<TUpdateResult> ExecuteUpdateAsync<TUpdateResult>(
470
454
/// </summary>
471
455
/// <param name="id">ID of the update.</param>
472
456
/// <returns>Workflow update handle.</returns>
473
- /// <remarks>WARNING: Workflow update is experimental and APIs may change.</remarks>
474
457
public WorkflowUpdateHandle GetUpdateHandle ( string id ) =>
475
458
new ( Client : Client , Id : id , WorkflowId : Id , WorkflowRunId : RunId ) ;
476
459
@@ -480,7 +463,6 @@ public WorkflowUpdateHandle GetUpdateHandle(string id) =>
480
463
/// <typeparam name="TUpdateResult">Update result type.</typeparam>
481
464
/// <param name="id">ID of the update.</param>
482
465
/// <returns>Workflow update handle.</returns>
483
- /// <remarks>WARNING: Workflow update is experimental and APIs may change.</remarks>
484
466
public WorkflowUpdateHandle < TUpdateResult > GetUpdateHandle < TUpdateResult > ( string id ) =>
485
467
new ( Client : Client , Id : id , WorkflowId : Id , WorkflowRunId : RunId ) ;
486
468
@@ -679,7 +661,6 @@ public Task<TQueryResult> QueryAsync<TQueryResult>(
679
661
/// <param name="updateCall">Invocation of workflow update method.</param>
680
662
/// <param name="options">Update options. Currently <c>WaitForStage</c> is required.</param>
681
663
/// <returns>Workflow update handle.</returns>
682
- /// <remarks>WARNING: Workflow update is experimental and APIs may change.</remarks>
683
664
public Task < WorkflowUpdateHandle > StartUpdateAsync (
684
665
Expression < Func < TWorkflow , Task > > updateCall , WorkflowUpdateStartOptions options ) =>
685
666
StartUpdateAsync < TWorkflow > ( updateCall , options ) ;
@@ -691,7 +672,6 @@ public Task<WorkflowUpdateHandle> StartUpdateAsync(
691
672
/// <param name="updateCall">Invocation of workflow update method.</param>
692
673
/// <param name="options">Update options. Currently <c>WaitForStage</c> is required.</param>
693
674
/// <returns>Workflow update handle.</returns>
694
- /// <remarks>WARNING: Workflow update is experimental and APIs may change.</remarks>
695
675
public Task < WorkflowUpdateHandle < TUpdateResult > > StartUpdateAsync < TUpdateResult > (
696
676
Expression < Func < TWorkflow , Task < TUpdateResult > > > updateCall ,
697
677
WorkflowUpdateStartOptions options ) =>
@@ -703,9 +683,6 @@ public Task<WorkflowUpdateHandle<TUpdateResult>> StartUpdateAsync<TUpdateResult>
703
683
/// +
704
684
/// <see cref="WorkflowUpdateHandle.GetResultAsync(RpcOptions?)" />.
705
685
/// </summary>
706
- /// <remarks>WARNING: Workflow update is experimental and APIs may change. Currently this
707
- /// API will timeout on long update requests instead of properly polling for their
708
- /// completion.</remarks>
709
686
/// <param name="updateCall">Invocation of workflow update method.</param>
710
687
/// <param name="options">Extra options.</param>
711
688
/// <returns>Completed update task.</returns>
@@ -724,9 +701,6 @@ public async Task ExecuteUpdateAsync(
724
701
/// +
725
702
/// <see cref="WorkflowUpdateHandle{TResult}.GetResultAsync(RpcOptions?)" />.
726
703
/// </summary>
727
- /// <remarks>WARNING: Workflow update is experimental and APIs may change. Currently this
728
- /// API will timeout on long update requests instead of properly polling for their
729
- /// completion.</remarks>
730
704
/// <typeparam name="TUpdateResult">Update result type.</typeparam>
731
705
/// <param name="updateCall">Invocation of workflow update method.</param>
732
706
/// <param name="options">Extra options.</param>
0 commit comments