You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 4, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: dynamic_entities/your_dynamic_activity_dacx.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
You must register the Activity with the [Worker](https://python.temporal.io/temporalio.worker.html) before it can be invoked.
15
15
16
16
The Activity function must then accept a single argument of type `Sequence[temporalio.common.RawValue]`.
17
-
The [payload_converter()](https://python.temporal.io/temporalio.activity.html#payload_converter) function is used to convert a `RawValue` object to a string representation.
17
+
The [payload_converter()](https://python.temporal.io/temporalio.activity.html#payload_converter) function is used to convert a `RawValue` object to the desired type.
Copy file name to clipboardExpand all lines: dynamic_entities/your_dynamic_query_dacx.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@
11
11
A Query can be made dynamic by adding `dynamic=True` to the `@query.defn` decorator.
12
12
13
13
The Query function must then accept a single argument of type `Sequence[temporalio.common.RawValue]`.
14
-
The [payload_converter()](https://python.temporal.io/temporalio.workflow.html#payload_converter) function is used to convert a `RawValue` object to a string representation.
14
+
The [payload_converter()](https://python.temporal.io/temporalio.workflow.html#payload_converter) function is used to convert a `RawValue` object to the desired type.
Copy file name to clipboardExpand all lines: dynamic_entities/your_dynamic_signal_dacx.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@
11
11
A Signal can be made dynamic by adding `dynamic=True` to the `@signal.defn` decorator.
12
12
13
13
The Signal function must then accept a single argument of type `Sequence[temporalio.common.RawValue]`.
14
-
The [payload_converter()](https://python.temporal.io/temporalio.workflow.html#payload_converter) function is used to convert a `RawValue` object to a string representation.
14
+
The [payload_converter()](https://python.temporal.io/temporalio.workflow.html#payload_converter) function is used to convert a `RawValue` object to the desired type.
Copy file name to clipboardExpand all lines: dynamic_entities/your_dynamic_workflow_dacx.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
You must register the Workflow with the [Worker](https://python.temporal.io/temporalio.worker.html) before it can be invoked.
15
15
16
16
The Workflow function must then accept a single argument of type `Sequence[temporalio.common.RawValue]`.
17
-
The [payload_converter()](https://python.temporal.io/temporalio.workflow.html#payload_converter) function is used to convert a `RawValue` object to a string representation.
17
+
The [payload_converter()](https://python.temporal.io/temporalio.workflow.html#payload_converter) function is used to convert a `RawValue` object to the desired type.
0 commit comments