Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions protos/local/core_interface.proto
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ message WFActivationJob {
TimerFiredTaskAttributes timer_fired = 2;

QueryWorkflowJob query_workflow = 3;
CancelWorkflowTaskAttributes cancel_workflow = 4;
}
}

Expand All @@ -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;
}
Expand Down