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

io.scalecube.services.transport.rsocket.ConnectionSetupCodec Maven / Gradle / Ivy

package io.scalecube.services.transport.rsocket;

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