@@ -309,7 +309,6 @@ public Task<TQueryResult> QueryAsync<TQueryResult>(
309309 /// <param name="updateCall">Invocation of workflow update method.</param>
310310 /// <param name="options">Update options. Currently <c>WaitForStage</c> is required.</param>
311311 /// <returns>Workflow update handle.</returns>
312- /// <remarks>WARNING: Workflow update is experimental and APIs may change.</remarks>
313312 public Task < WorkflowUpdateHandle > StartUpdateAsync < TWorkflow > (
314313 Expression < Func < TWorkflow , Task > > updateCall , WorkflowUpdateStartOptions options )
315314 {
@@ -328,7 +327,6 @@ public Task<WorkflowUpdateHandle> StartUpdateAsync<TWorkflow>(
328327 /// <param name="updateCall">Invocation of workflow update method.</param>
329328 /// <param name="options">Update options. Currently <c>WaitForStage</c> is required.</param>
330329 /// <returns>Workflow update handle.</returns>
331- /// <remarks>WARNING: Workflow update is experimental and APIs may change.</remarks>
332330 public Task < WorkflowUpdateHandle < TUpdateResult > > StartUpdateAsync < TWorkflow , TUpdateResult > (
333331 Expression < Func < TWorkflow , Task < TUpdateResult > > > updateCall ,
334332 WorkflowUpdateStartOptions options )
@@ -347,7 +345,6 @@ public Task<WorkflowUpdateHandle<TUpdateResult>> StartUpdateAsync<TWorkflow, TUp
347345 /// <param name="args">Arguments for the update.</param>
348346 /// <param name="options">Update options. Currently <c>WaitForStage</c> is required.</param>
349347 /// <returns>Workflow update handle.</returns>
350- /// <remarks>WARNING: Workflow update is experimental and APIs may change.</remarks>
351348 public async Task < WorkflowUpdateHandle > StartUpdateAsync (
352349 string update , IReadOnlyCollection < object ? > args , WorkflowUpdateStartOptions options ) =>
353350 await StartUpdateAsync < ValueTuple > ( update , args , options ) . ConfigureAwait ( false ) ;
@@ -360,7 +357,6 @@ public async Task<WorkflowUpdateHandle> StartUpdateAsync(
360357 /// <param name="args">Arguments for the update.</param>
361358 /// <param name="options">Update options. Currently <c>WaitForStage</c> is required.</param>
362359 /// <returns>Workflow update handle.</returns>
363- /// <remarks>WARNING: Workflow update is experimental and APIs may change.</remarks>
364360 public Task < WorkflowUpdateHandle < TUpdateResult > > StartUpdateAsync < TUpdateResult > (
365361 string update , IReadOnlyCollection < object ? > args , WorkflowUpdateStartOptions options ) =>
366362 Client . OutboundInterceptor . StartWorkflowUpdateAsync < TUpdateResult > ( new (
@@ -378,9 +374,6 @@ public Task<WorkflowUpdateHandle<TUpdateResult>> StartUpdateAsync<TUpdateResult>
378374 /// +
379375 /// <see cref="WorkflowUpdateHandle.GetResultAsync(RpcOptions?)" />.
380376 /// </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>
384377 /// <typeparam name="TWorkflow">Workflow class type.</typeparam>
385378 /// <param name="updateCall">Invocation of workflow update method.</param>
386379 /// <param name="options">Extra options.</param>
@@ -401,9 +394,6 @@ public async Task ExecuteUpdateAsync<TWorkflow>(
401394 /// +
402395 /// <see cref="WorkflowUpdateHandle{TResult}.GetResultAsync(RpcOptions?)" />.
403396 /// </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>
407397 /// <typeparam name="TWorkflow">Workflow class type.</typeparam>
408398 /// <typeparam name="TUpdateResult">Update result type.</typeparam>
409399 /// <param name="updateCall">Invocation of workflow update method.</param>
@@ -424,9 +414,6 @@ public async Task<TUpdateResult> ExecuteUpdateAsync<TWorkflow, TUpdateResult>(
424414 /// +
425415 /// <see cref="WorkflowUpdateHandle.GetResultAsync(RpcOptions?)" />.
426416 /// </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>
430417 /// <param name="update">Update name.</param>
431418 /// <param name="args">Update args.</param>
432419 /// <param name="options">Extra options.</param>
@@ -447,9 +434,6 @@ public async Task ExecuteUpdateAsync(
447434 /// +
448435 /// <see cref="WorkflowUpdateHandle.GetResultAsync(RpcOptions?)" />.
449436 /// </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>
453437 /// <typeparam name="TUpdateResult">Update result type.</typeparam>
454438 /// <param name="update">Update name.</param>
455439 /// <param name="args">Update args.</param>
@@ -470,7 +454,6 @@ public async Task<TUpdateResult> ExecuteUpdateAsync<TUpdateResult>(
470454 /// </summary>
471455 /// <param name="id">ID of the update.</param>
472456 /// <returns>Workflow update handle.</returns>
473- /// <remarks>WARNING: Workflow update is experimental and APIs may change.</remarks>
474457 public WorkflowUpdateHandle GetUpdateHandle ( string id ) =>
475458 new ( Client : Client , Id : id , WorkflowId : Id , WorkflowRunId : RunId ) ;
476459
@@ -480,7 +463,6 @@ public WorkflowUpdateHandle GetUpdateHandle(string id) =>
480463 /// <typeparam name="TUpdateResult">Update result type.</typeparam>
481464 /// <param name="id">ID of the update.</param>
482465 /// <returns>Workflow update handle.</returns>
483- /// <remarks>WARNING: Workflow update is experimental and APIs may change.</remarks>
484466 public WorkflowUpdateHandle < TUpdateResult > GetUpdateHandle < TUpdateResult > ( string id ) =>
485467 new ( Client : Client , Id : id , WorkflowId : Id , WorkflowRunId : RunId ) ;
486468
@@ -679,7 +661,6 @@ public Task<TQueryResult> QueryAsync<TQueryResult>(
679661 /// <param name="updateCall">Invocation of workflow update method.</param>
680662 /// <param name="options">Update options. Currently <c>WaitForStage</c> is required.</param>
681663 /// <returns>Workflow update handle.</returns>
682- /// <remarks>WARNING: Workflow update is experimental and APIs may change.</remarks>
683664 public Task < WorkflowUpdateHandle > StartUpdateAsync (
684665 Expression < Func < TWorkflow , Task > > updateCall , WorkflowUpdateStartOptions options ) =>
685666 StartUpdateAsync < TWorkflow > ( updateCall , options ) ;
@@ -691,7 +672,6 @@ public Task<WorkflowUpdateHandle> StartUpdateAsync(
691672 /// <param name="updateCall">Invocation of workflow update method.</param>
692673 /// <param name="options">Update options. Currently <c>WaitForStage</c> is required.</param>
693674 /// <returns>Workflow update handle.</returns>
694- /// <remarks>WARNING: Workflow update is experimental and APIs may change.</remarks>
695675 public Task < WorkflowUpdateHandle < TUpdateResult > > StartUpdateAsync < TUpdateResult > (
696676 Expression < Func < TWorkflow , Task < TUpdateResult > > > updateCall ,
697677 WorkflowUpdateStartOptions options ) =>
@@ -703,9 +683,6 @@ public Task<WorkflowUpdateHandle<TUpdateResult>> StartUpdateAsync<TUpdateResult>
703683 /// +
704684 /// <see cref="WorkflowUpdateHandle.GetResultAsync(RpcOptions?)" />.
705685 /// </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>
709686 /// <param name="updateCall">Invocation of workflow update method.</param>
710687 /// <param name="options">Extra options.</param>
711688 /// <returns>Completed update task.</returns>
@@ -724,9 +701,6 @@ public async Task ExecuteUpdateAsync(
724701 /// +
725702 /// <see cref="WorkflowUpdateHandle{TResult}.GetResultAsync(RpcOptions?)" />.
726703 /// </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>
730704 /// <typeparam name="TUpdateResult">Update result type.</typeparam>
731705 /// <param name="updateCall">Invocation of workflow update method.</param>
732706 /// <param name="options">Extra options.</param>
0 commit comments