File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -5203,6 +5203,7 @@ class StartWorkflowInput:
5203
5203
rpc_timeout : Optional [timedelta ]
5204
5204
request_eager_start : bool
5205
5205
priority : temporalio .common .Priority
5206
+ # The following options are experimental and unstable.
5206
5207
nexus_completion_callbacks : Sequence [NexusCompletionCallback ]
5207
5208
workflow_event_links : Sequence [temporalio .api .common .v1 .Link .WorkflowEvent ]
5208
5209
request_id : Optional [str ]
@@ -7264,7 +7265,11 @@ def api_key(self, value: Optional[str]) -> None:
7264
7265
7265
7266
@dataclass (frozen = True )
7266
7267
class NexusCompletionCallback :
7267
- """Nexus callback to attach to events such as workflow completion."""
7268
+ """Nexus callback to attach to events such as workflow completion.
7269
+
7270
+ .. warning::
7271
+ This option is experimental and unstable.
7272
+ """
7268
7273
7269
7274
url : str
7270
7275
"""Callback URL."""
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ async def _start(
115
115
return WorkflowRunOperationHandler (_start , input_type , output_type )
116
116
117
117
method_name = get_callable_name (start )
118
- # TODO(preview): make double-underscore attrs private to nexusrpc and expose getters/setters
118
+ # TODO(nexus- preview): make double-underscore attrs private to nexusrpc and expose getters/setters
119
119
operation_handler_factory .__nexus_operation__ = nexusrpc .Operation (
120
120
name = name or method_name ,
121
121
method_name = method_name ,
You can’t perform that action at this time.
0 commit comments