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
Client.send_object() allows constant arguments to be sent only once when calling Client.submit() multiple time.
Client.send_object()
Client.submit()
It would be nice to also allow functions to be serialized and send once using the same mechanism:
func_ref = client.send_object(my_function) fut_1 = client.submit(func_ref, arg_1) fut_2 = client.submit(func_ref, arg_2)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Client.send_object()
allows constant arguments to be sent only once when callingClient.submit()
multiple time.It would be nice to also allow functions to be serialized and send once using the same mechanism:
The text was updated successfully, but these errors were encountered: