From adc55f684d735c12a55682c9b32fe841314cd7e1 Mon Sep 17 00:00:00 2001 From: Roey Berman Date: Sun, 21 Feb 2021 22:37:29 +0200 Subject: [PATCH] Add CancelWorkflowTaskAttributes --- protos/local/core_interface.proto | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/protos/local/core_interface.proto b/protos/local/core_interface.proto index f81dc63bd..ceabca17b 100644 --- a/protos/local/core_interface.proto +++ b/protos/local/core_interface.proto @@ -65,6 +65,7 @@ message WFActivationJob { TimerFiredTaskAttributes timer_fired = 2; QueryWorkflowJob query_workflow = 3; + CancelWorkflowTaskAttributes cancel_workflow = 4; } } @@ -80,6 +81,10 @@ message StartWorkflowTaskAttributes { // will be others - workflow exe started attrs, etc } +message CancelWorkflowTaskAttributes { + // TODO: add attributes here +} + message TimerFiredTaskAttributes { string timer_id = 1; }