-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathtasks.proto
More file actions
26 lines (20 loc) · 1.02 KB
/
tasks.proto
File metadata and controls
26 lines (20 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
syntax = "proto3";
package temporal.server.chasm.lib.activity.proto.v1;
option go_package = "go.temporal.io/server/chasm/lib/activity/gen/activitypb;activitypb";
message ActivityDispatchTask {
// The current attempt number for this activity execution. Since task validation/exec happen outside of a lock, we
// need to guard against any concurrent operations where the originally intended task may be outdated.
int32 attempt = 1;
}
message ScheduleToStartTimeoutTask {
// The current attempt number for this activity execution. Since task validation/exec happen outside of a lock, we
// need to guard against any concurrent operations where the originally intended task may be outdated.
int32 attempt = 1;
}
message ScheduleToCloseTimeoutTask {
}
message StartToCloseTimeoutTask {
// The current attempt number for this activity execution. Since task validation/exec happen outside of a lock, we
// need to guard against any concurrent operations where the originally intended task may be outdated.
int32 attempt = 1;
}