dabla commented on code in PR #68299:
URL: https://github.com/apache/airflow/pull/68299#discussion_r3388705176


##########
task-sdk/src/airflow/sdk/execution_time/task_runner.py:
##########
@@ -538,6 +655,15 @@ def xcom_push(self, key: str, value: Any):
         """
         _xcom_push(self, key, value)
 
+    async def axcom_push(self, key: str, value: Any):
+        """
+        Make an XCom available for tasks to pull asynchronously.
+
+        :param key: Key to store the value under.
+        :param value: Value to store. Only be JSON-serializable values may be 
used.
+        """
+        await _axcom_push(self, key, value)

Review Comment:
   I did the same as _xcom_push, that's the only reason.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to