@@ -2197,6 +2197,9 @@ def start_local_activity(
2197
2197
At least one of ``schedule_to_close_timeout`` or ``start_to_close_timeout``
2198
2198
must be present.
2199
2199
2200
+ .. warning::
2201
+ Local activities are currently experimental.
2202
+
2200
2203
Args:
2201
2204
activity: Activity name or function reference.
2202
2205
arg: Single argument to the activity.
@@ -2365,6 +2368,9 @@ async def execute_local_activity(
2365
2368
"""Start a local activity and wait for completion.
2366
2369
2367
2370
This is a shortcut for ``await`` :py:meth:`start_local_activity`.
2371
+
2372
+ .. warning::
2373
+ Local activities are currently experimental.
2368
2374
"""
2369
2375
# We call the runtime directly instead of top-level start_local_activity to
2370
2376
# ensure we don't miss new parameters
@@ -2497,6 +2503,9 @@ def start_local_activity_class(
2497
2503
"""Start a local activity from a callable class.
2498
2504
2499
2505
See :py:meth:`start_local_activity` for parameter and return details.
2506
+
2507
+ .. warning::
2508
+ Local activities are currently experimental.
2500
2509
"""
2501
2510
return _Runtime .current ().workflow_start_local_activity (
2502
2511
activity ,
@@ -2627,6 +2636,9 @@ async def execute_local_activity_class(
2627
2636
"""Start a local activity from a callable class and wait for completion.
2628
2637
2629
2638
This is a shortcut for ``await`` :py:meth:`start_local_activity_class`.
2639
+
2640
+ .. warning::
2641
+ Local activities are currently experimental.
2630
2642
"""
2631
2643
# We call the runtime directly instead of top-level start_local_activity to
2632
2644
# ensure we don't miss new parameters
@@ -2759,6 +2771,9 @@ def start_local_activity_method(
2759
2771
"""Start a local activity from a method.
2760
2772
2761
2773
See :py:meth:`start_local_activity` for parameter and return details.
2774
+
2775
+ .. warning::
2776
+ Local activities are currently experimental.
2762
2777
"""
2763
2778
return _Runtime .current ().workflow_start_local_activity (
2764
2779
activity ,
@@ -2889,6 +2904,9 @@ async def execute_local_activity_method(
2889
2904
"""Start a local activity from a method and wait for completion.
2890
2905
2891
2906
This is a shortcut for ``await`` :py:meth:`start_local_activity_method`.
2907
+
2908
+ .. warning::
2909
+ Local activities are currently experimental.
2892
2910
"""
2893
2911
# We call the runtime directly instead of top-level start_local_activity to
2894
2912
# ensure we don't miss new parameters
0 commit comments