How to run asynchronous tasks? #3723
Answered
by
luigifab
hirale
asked this question in
Questions & Answers
-
We want to push some data from the backend to a third-party analysis service during the checkout process to ensure data integrity. There is always some transaction data missing on the client side, which may be caused by anti-tracking plug-ins or network problems. Is there a recommended way to implement asynchronous tasks in OpenMage? |
Beta Was this translation helpful? Give feedback.
Answered by
luigifab
Jan 6, 2024
Replies: 1 comment
-
There are several possibilities, depending on the amount of data to be synchronized.
I used both methods for different purposes. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
hirale
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are several possibilities, depending on the amount of data to be synchronized.
__destruct
of your modelI used both methods for different purposes.