Remove metadata buffering and flushing

This commit is contained in:
2020-04-20 16:53:59 +02:00
parent 8b558ac023
commit f108f54d6e
2 changed files with 16 additions and 53 deletions
+5 -3
View File
@@ -34,9 +34,6 @@ class FastH5Writer {
void create_file(const std::string& filename);
void flush_metadata();
public:
FastH5Writer(
const size_t n_frames_per_file,
@@ -57,6 +54,11 @@ public:
const std::string& name,
const void* value);
void write_scalar_metadata(
const std::string& name,
const void* value,
const H5::DataType data_type);
void close_file();
};