io.scalecube.services.examples.services.Service1 Maven / Gradle / Ivy
package io.scalecube.services.examples.services;
import io.scalecube.services.annotations.Service;
import io.scalecube.services.annotations.ServiceMethod;
import reactor.core.publisher.Flux;
@Service
public interface Service1 {
@ServiceMethod
Flux manyDelay(long interval);
@ServiceMethod
Flux remoteCallThenManyDelay(long interval);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy