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
Retrieves the value associated with the given name.
100
+
101
+
Args:
102
+
name: The state name
103
+
serde: The serialization/deserialization mechanism. - if the default serde is used, a default serializer will be used based on the type.
104
+
See also 'type_hint'.
105
+
type_hint: The type hint of the return value. This is used to pick the serializer. If None, the type hint will be inferred from the action's return type, or the provided serializer.
Retrieves the value associated with the given name.
343
+
344
+
Args:
345
+
name: The state name
346
+
serde: The serialization/deserialization mechanism. - if the default serde is used, a default serializer will be used based on the type.
347
+
See also 'type_hint'.
348
+
type_hint: The type hint of the return value. This is used to pick the serializer. If None, the type hint will be inferred from the action's return type, or the provided serializer.
329
349
"""
330
350
331
351
@abc.abstractmethod
@@ -339,7 +359,7 @@ class DurablePromise(typing.Generic[T]):
0 commit comments