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

com.vtence.molecule.session.Marshaller Maven / Gradle / Ivy

There is a newer version: 0.15.0
Show newest version
package com.vtence.molecule.session;

public interface Marshaller {
    byte[] marshall(T content) throws Exception;

    T unmarshall(byte[] data) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy