@@ -2446,6 +2446,7 @@ def __init__(
2446
2446
start_delay : Optional [timedelta ] = None ,
2447
2447
rpc_metadata : Mapping [str , str ] = {},
2448
2448
rpc_timeout : Optional [timedelta ] = None ,
2449
+ priority : Optional [temporalio .common .Priority ] = None ,
2449
2450
) -> None : ...
2450
2451
2451
2452
# Overload for single-param workflow, with_start
@@ -2508,6 +2509,7 @@ def __init__(
2508
2509
start_delay : Optional [timedelta ] = None ,
2509
2510
rpc_metadata : Mapping [str , str ] = {},
2510
2511
rpc_timeout : Optional [timedelta ] = None ,
2512
+ priority : Optional [temporalio .common .Priority ] = None ,
2511
2513
) -> None : ...
2512
2514
2513
2515
# Overload for string-name workflow, with_start
@@ -2540,6 +2542,7 @@ def __init__(
2540
2542
start_delay : Optional [timedelta ] = None ,
2541
2543
rpc_metadata : Mapping [str , str ] = {},
2542
2544
rpc_timeout : Optional [timedelta ] = None ,
2545
+ priority : Optional [temporalio .common .Priority ] = None ,
2543
2546
) -> None : ...
2544
2547
2545
2548
def __init__ (
@@ -2570,6 +2573,7 @@ def __init__(
2570
2573
start_delay : Optional [timedelta ] = None ,
2571
2574
rpc_metadata : Mapping [str , str ] = {},
2572
2575
rpc_timeout : Optional [timedelta ] = None ,
2576
+ priority : Optional [temporalio .common .Priority ] = None ,
2573
2577
stack_level : int = 2 ,
2574
2578
) -> None :
2575
2579
"""Create a WithStartWorkflowOperation.
@@ -2610,6 +2614,7 @@ def __init__(
2610
2614
ret_type = result_type or result_type_from_run_fn ,
2611
2615
rpc_metadata = rpc_metadata ,
2612
2616
rpc_timeout = rpc_timeout ,
2617
+ priority = priority ,
2613
2618
)
2614
2619
self ._workflow_handle : Future [WorkflowHandle [SelfType , ReturnType ]] = Future ()
2615
2620
self ._used = False
0 commit comments