Skip to content
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

Rely on progress sender for awaiting termination #57

Open
rklaehn opened this issue Feb 12, 2025 · 2 comments
Open

Rely on progress sender for awaiting termination #57

rklaehn opened this issue Feb 12, 2025 · 2 comments
Milestone

Comments

@rklaehn
Copy link
Collaborator

rklaehn commented Feb 12, 2025

For the store trait, see #56, we have several fns that take a progress emitter and return a future to indicate completion. This might be convenient sometimes, but we have two mechanisms to notify completion - a progress complete or error event and the final result.

We could always indicate completion using the progress stream. There would be events Complete and Error(io::Error). That way the fn can return unit, and the store trait gets more simple. Usage gets slightly more annoying, but we can make a wrapper for that.

@rklaehn rklaehn added this to the Blobs 1.0 milestone Feb 12, 2025
@n0bot n0bot bot added this to iroh Feb 12, 2025
@rklaehn rklaehn moved this to 🏗 In progress in iroh Feb 19, 2025
@rklaehn
Copy link
Collaborator Author

rklaehn commented Feb 19, 2025

I am using a naked/unwrapped tokio::sync::mpsc::Sender now, and just use try_send for progress events and send().await for required events.

@rklaehn
Copy link
Collaborator Author

rklaehn commented Mar 6, 2025

Implemented in the new store

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: 🏗 In progress
Development

No branches or pull requests

1 participant