We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
future.done()
callback_fn
When using &wait=true, the callback_fn cannot be used to modify the result because it is called after the future completes.
&wait=true
This happens if one calls future.done() to wait before the callback fn is executed, it would not work as intended.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using
&wait=true
, thecallback_fn
cannot be used to modify the result because it is called after the future completes.This happens if one calls
future.done()
to wait before the callback fn is executed, it would not work as intended.The text was updated successfully, but these errors were encountered: