io.scalecube.services.auth.ConnectionSetupCodec Maven / Gradle / Ivy
package io.scalecube.services.auth;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
public interface ConnectionSetupCodec {
ConnectionSetupCodec DEFAULT_INSTANCE = new JdkConnectionSetupCodec();
void encode(OutputStream stream, ConnectionSetup value) throws IOException;
ConnectionSetup decode(InputStream stream) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy