-
Notifications
You must be signed in to change notification settings - Fork 54
Allow specifying send flags. #72
New issue
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
base: main
Are you sure you want to change the base?
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files
🚀 New features to boost your workflow:
|
|
Thanks for the PR. Before merging, I'm wondering what other arguments could SendOptions be used for? I think |
|
Sorry about the delay! What about passing a linked list of work through Your call tho, happy to inline if you feel strongly either way |
|
I would be more inclined to have/see a rustified version of a SendWR rather than having something new, keeping the API similar to the C one. Something like But no support for |
|
Introducing |
|
Having an iterator would be nice for ergonomics, and it works well for now. |
Creates versions of Send/Read/Write with an
optionsargument. For now that field only controls send flags, we could use to add additional arguments (e.g. qp_type) to those methods later on without breaking existing code if needed.