Skip to content

Commit

Permalink
Update-with-Start (#2199)
Browse files Browse the repository at this point in the history
## What was changed
<!-- Describe what has changed in this PR -->

Adds support for Update-with-Start, using the MultiOperation API (temporalio/api#367).

## Why?
<!-- Tell your future self why have you made these changes -->

To allow Update-with-Start feature.
  • Loading branch information
stephanos authored Sep 25, 2024
1 parent 0e58687 commit 238c5e1
Show file tree
Hide file tree
Showing 27 changed files with 2,751 additions and 212 deletions.
2 changes: 2 additions & 0 deletions docker/github/dynamicconfig/development.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ system.enableActivityEagerExecution:
- value: true
system.enableEagerWorkflowStart:
- value: true
frontend.enableExecuteMultiOperation:
- value: true
frontend.enableUpdateWorkflowExecution:
- value: true
frontend.enableUpdateWorkflowExecutionAsyncAccepted:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ <A1, A2, A3, A4, A5> void add(
* @param arg2 second request function parameter
* @param arg3 third request function parameter
* @param arg4 fourth request function parameter
* @param arg5 sixth request function parameter
* @param arg5 fifth request function parameter
* @param arg6 sixth request function parameter
*/
<A1, A2, A3, A4, A5, A6> void add(
Expand Down Expand Up @@ -171,7 +171,7 @@ <A1, A2, A3, A4> void add(
* @param arg2 second request function parameter
* @param arg3 third request function parameter
* @param arg4 fourth request function parameter
* @param arg5 sixth request function parameter
* @param arg5 fifth request function parameter
*/
<A1, A2, A3, A4, A5> void add(
Functions.Func5<A1, A2, A3, A4, A5, ?> request, A1 arg1, A2 arg2, A3 arg3, A4 arg4, A5 arg5);
Expand All @@ -185,7 +185,7 @@ <A1, A2, A3, A4, A5> void add(
* @param arg2 second request function parameter
* @param arg3 third request function parameter
* @param arg4 fourth request function parameter
* @param arg5 sixth request function parameter
* @param arg5 fifth request function parameter
* @param arg6 sixth request function parameter
*/
<A1, A2, A3, A4, A5, A6> void add(
Expand Down
Loading

0 comments on commit 238c5e1

Please sign in to comment.