All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eurodyn.qlack.fuse.cm.storage.StorageEngine Maven / Gradle / Ivy

There is a newer version: 3.6.8
Show newest version
package com.eurodyn.qlack.fuse.cm.storage;

import com.eurodyn.qlack.fuse.cm.dto.BinChunkDTO;
import java.io.IOException;

public interface StorageEngine {

  void setVersionContent(String versionID, byte[] content);

  byte[] getVersionContent(String versionID) throws IOException;

  String setBinChunk(String versionID, byte[] content, int chunkIndex);

  BinChunkDTO getBinChunk(String versionID, int chunkIndex);

  void deleteVersionBinaries(String versionID);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy