com.netflix.discovery.converters.wrappers.EncoderWrapper Maven / Gradle / Ivy
package com.netflix.discovery.converters.wrappers;
import java.io.IOException;
import java.io.OutputStream;
/**
* @author David Liu
*/
public interface EncoderWrapper extends CodecWrapperBase {
String encode(T object) throws IOException;
void encode(T object, OutputStream outputStream) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy