io.scalecube.services.examples.helloworld.service.api.BidiGreetingService Maven / Gradle / Ivy
package io.scalecube.services.examples.helloworld.service.api;
import io.scalecube.services.annotations.Service;
import io.scalecube.services.annotations.ServiceMethod;
import reactor.core.publisher.Flux;
@Service("BidiGreeting")
public interface BidiGreetingService {
@ServiceMethod()
public Flux greeting(Flux request);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy