I call an await api in SaveHandler but it is not wait response #7298
-
I call an await api in SaveHandler but it is not wait response. protected async override void ExecuteSave()
} How can I modify it so that I can continue the next action after getting a reply? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
handlers are not support async await. They are chain of methods should run one by one and we don't have async overrides. |
Beta Was this translation helpful? Give feedback.
handlers are not support async await. They are chain of methods should run one by one and we don't have async overrides.