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

io.scalecube.services.transport.api.ClientChannel Maven / Gradle / Ivy

package io.scalecube.services.transport.api;

import io.scalecube.services.api.ServiceMessage;
import org.reactivestreams.Publisher;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;

/** Client channel interface. */
public interface ClientChannel {

  Mono requestResponse(ServiceMessage message);

  Flux requestStream(ServiceMessage message);

  Flux requestChannel(Publisher publisher);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy