Dataset.writeChunk
void writeChunk(const hsize_t[] offset, const void * buffer, size_t dataSize,
uint filters = 0, hid_t dxpl = H5P_DEFAULT)Writes a chunk directly to the file without compression.
This is useful for writing pre-compressed data or implementing custom I/O pipelines.
Parameters
offset | Array of chunk coordinates |
buffer | Buffer containing the raw chunk data |
dataSize | Size of the data in bytes |
filters | Filter mask (0 = apply all filters, or bitmask to skip) |
dxpl | Data transfer property list (default: H5P_DEFAULT) |
Throws
HDF5Exception if writing the chunk fails