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
It would be nice to have a way for external tools to listen to progress as
N5Utils.save, saveRegion, etc write blocks.
N5Utils.save
saveRegion
Perhaps by passing a Listener to the save methods that each job can increment when a block is written.
@cmhulbert @axtimwalde
The text was updated successfully, but these errors were encountered:
After sleeping over this, I would first try to do this from outside because adding listeners clutters the API with things the most applications don't need. It looks like we can get meaningful feedback from the ThreadPoolExecutor, i.e. https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ThreadPoolExecutor.html#getTaskCount-- and https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ThreadPoolExecutor.html#getCompletedTaskCount--
ThreadPoolExecutor
Sorry, something went wrong.
see also saalfeldlab/n5-ij@25a3816
No branches or pull requests
It would be nice to have a way for external tools to listen to progress as
N5Utils.save
,saveRegion
, etc write blocks.Perhaps by passing a Listener to the save methods that each job can increment when a block is written.
@cmhulbert @axtimwalde
The text was updated successfully, but these errors were encountered: