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

proj.zoie.store.ZoieStoreSerializer Maven / Gradle / Ivy

There is a newer version: 3.3.0
Show newest version
package proj.zoie.store;

public interface ZoieStoreSerializer {
  long getUid(D data);
  byte[] toBytes(D data);
  D fromBytes(byte[] data);
  boolean isDelete(D data);
  boolean isSkip(D data);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy