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

io.scalecube.services.examples.helloworld.service.GreetingServiceImpl Maven / Gradle / Ivy

package io.scalecube.services.examples.helloworld.service;

import io.scalecube.services.examples.helloworld.service.api.Greeting;
import io.scalecube.services.examples.helloworld.service.api.GreetingsService;
import reactor.core.publisher.Mono;

public class GreetingServiceImpl implements GreetingsService {
  @Override
  public Mono sayHello(String name) {
    return Mono.just(new Greeting("Nice to meet you " + name + " and welcome to ScaleCube"));
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy