@@ -149,6 +149,7 @@ class Start(google.protobuf.message.Message):
149
149
START_TO_CLOSE_TIMEOUT_FIELD_NUMBER : builtins .int
150
150
HEARTBEAT_TIMEOUT_FIELD_NUMBER : builtins .int
151
151
RETRY_POLICY_FIELD_NUMBER : builtins .int
152
+ PRIORITY_FIELD_NUMBER : builtins .int
152
153
IS_LOCAL_FIELD_NUMBER : builtins .int
153
154
workflow_namespace : builtins .str
154
155
"""The namespace the workflow lives in"""
@@ -208,6 +209,9 @@ class Start(google.protobuf.message.Message):
208
209
(or not) during activity scheduling as the service can override the provided one in case its
209
210
values are not specified or exceed configured system limits.
210
211
"""
212
+ @property
213
+ def priority (self ) -> temporalio .api .common .v1 .message_pb2 .Priority :
214
+ """Priority of this activity. Local activities will always have this field set to the default."""
211
215
is_local : builtins .bool
212
216
"""Set to true if this is a local activity. Note that heartbeating does not apply to local
213
217
activities.
@@ -240,6 +244,7 @@ class Start(google.protobuf.message.Message):
240
244
start_to_close_timeout : google .protobuf .duration_pb2 .Duration | None = ...,
241
245
heartbeat_timeout : google .protobuf .duration_pb2 .Duration | None = ...,
242
246
retry_policy : temporalio .api .common .v1 .message_pb2 .RetryPolicy | None = ...,
247
+ priority : temporalio .api .common .v1 .message_pb2 .Priority | None = ...,
243
248
is_local : builtins .bool = ...,
244
249
) -> None : ...
245
250
def HasField (
@@ -249,6 +254,8 @@ class Start(google.protobuf.message.Message):
249
254
b"current_attempt_scheduled_time" ,
250
255
"heartbeat_timeout" ,
251
256
b"heartbeat_timeout" ,
257
+ "priority" ,
258
+ b"priority" ,
252
259
"retry_policy" ,
253
260
b"retry_policy" ,
254
261
"schedule_to_close_timeout" ,
@@ -284,6 +291,8 @@ class Start(google.protobuf.message.Message):
284
291
b"input" ,
285
292
"is_local" ,
286
293
b"is_local" ,
294
+ "priority" ,
295
+ b"priority" ,
287
296
"retry_policy" ,
288
297
b"retry_policy" ,
289
298
"schedule_to_close_timeout" ,
0 commit comments