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

com.hubspot.singularity.data.transcoders.Transcoder Maven / Gradle / Ivy

package com.hubspot.singularity.data.transcoders;

import javax.annotation.Nullable;

public interface Transcoder {

  T fromBytes(@Nullable byte[] data) throws SingularityTranscoderException;

  byte[] toBytes(@Nullable T object) throws SingularityTranscoderException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy