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

com.github.ltsopensource.zookeeper.serializer.ZkSerializer Maven / Gradle / Ivy

package com.github.ltsopensource.zookeeper.serializer;

/**
 * @author Robert HG ([email protected]) on 5/17/15.
 */
public interface ZkSerializer {

    public byte[] serialize(Object data) throws ZkMarshallingException;

    public Object deserialize(byte[] bytes) throws ZkMarshallingException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy