Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanos committed Dec 6, 2024
1 parent 11b9b65 commit ee95802
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,13 +165,13 @@ <R> WorkflowUpdateHandle<R> getUpdateHandle(
*
* @param updateOptions options that will be used to configure and start a new update request
* @param updateArgs update method arguments
* @param starArgs workflow start arguments
* @param startArgs workflow start arguments
* @param <R> type of the update workflow result
* @return WorkflowUpdateHandle that can be used to get the result of the update
*/
@Experimental
<R> WorkflowUpdateHandle<R> startUpdateWithStart(
UpdateOptions<R> updateOptions, Object[] updateArgs, Object[] starArgs);
UpdateOptions<R> updateOptions, Object[] updateArgs, Object[] startArgs);

/**
* Synchronously update a workflow execution by invoking its update handler, and start the
Expand All @@ -180,13 +180,13 @@ <R> WorkflowUpdateHandle<R> startUpdateWithStart(
*
* @param updateOptions options that will be used to configure and start a new update request
* @param updateArgs update method arguments
* @param starArgs workflow start arguments
* @param startArgs workflow start arguments
* @param <R> type of the update workflow result
* @return update result
*/
@Experimental
<R> R executeUpdateWithStart(
UpdateOptions<R> updateOptions, Object[] updateArgs, Object[] starArgs);
UpdateOptions<R> updateOptions, Object[] updateArgs, Object[] startArgs);

WorkflowExecution signalWithStart(String signalName, Object[] signalArgs, Object[] startArgs);

Expand Down

0 comments on commit ee95802

Please sign in to comment.