We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efcd397 commit 08010e4Copy full SHA for 08010e4
pkg/core/task/workflow.go
@@ -13,10 +13,16 @@ const (
13
)
14
15
type Workflow struct {
16
+ // WorkflowInstance is the workflow instance that this task is for
17
WorkflowInstance core.WorkflowInstance
18
19
+ // Kind defines what kind of task this is. A Continuation task only contains
20
+ // new events and not the full history. By default the history is included.
21
Kind Kind
22
- History []history.Event
23
+ // History are the events that have been executed so far
24
+ History []history.Event
25
+
26
+ // NewEvents are new events since the last task execution
27
NewEvents []history.Event
28
}
0 commit comments