io.scalecube.services.transport.api.ClientTransport Maven / Gradle / Ivy
The newest version!
package io.scalecube.services.transport.api;
import io.scalecube.services.ServiceReference;
public interface ClientTransport extends AutoCloseable {
/**
* Creates {@link ClientChannel} for communication with remote service endpoint.
*
* @param serviceReference target serviceReference
* @return {@link ClientChannel} instance
*/
ClientChannel create(ServiceReference serviceReference);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy