Skip to content

ODS 1.0.4

Compare
Choose a tag to compare
@ryandw11 ryandw11 released this 16 Dec 03:29
· 15 commits to master since this release

Changes

  • Added the ability for ODS to now use memory only compared to needed a file.
  • Changed the Compressor methods.
  • Split code up into internal classes.
  • Added the export method.

Examples

// memory only
ObjectDataStructure ods = new ObjectDataStructure();
// memory with existing data inserted in. arrayOfBytes is compressed using ZLIB.
ObjectDataStructure ods = new ObjectDataStructure(arrayOfBytes, new ZLIBCompression());