-
Notifications
You must be signed in to change notification settings - Fork 24
Description
I am aware that PureHDF currently does not support "streaming", but instead uses "deferred writing" (and the final structure of the file must be known beforehand).
I am writing an application in which I need an HDF5 library that is 100% managed code (like this library) because I need it to run on any platform, so I don't want dependencies on the compiled DLLs. I also need to be able to stream data to a file without knowing how big the file will be at the end (I don't know how many samples/frames I am streaming beforehand), and if possible I'd like the file to still maintain data integrity in case of a crash.
Is there any possibility that this library may be able to handle writing data as a stream of an unknown length anytime in the near future?