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 has been archived by the owner on Jun 21, 2023. It is now read-only.
Since CallExecutor has status as instance variable to store result, it is needed to create new CallExecutor in every execute call, otherwise it could cause data race under multi-threaded environment.
In order to avoid the misuse of CallExecutor, please consider to
add ThreadUnsafe annotation on CallExecutor
or implement in a way which forces users to create new CallExecutor in every execute call
The text was updated successfully, but these errors were encountered:
jeremyfu-aws
changed the title
Mark CallExecutor as ThreadUnsafe or force user to create CallExecutor in every call to avoid data race
Mark CallExecutor as ThreadUnsafe or force user to create CallExecutor in every execute call to avoid data race
Jun 14, 2023
Since CallExecutor has status as instance variable to store result, it is needed to create new CallExecutor in every execute call, otherwise it could cause data race under multi-threaded environment.
In order to avoid the misuse of CallExecutor, please consider to
The text was updated successfully, but these errors were encountered: