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

com.yiji.framework.watcher.dubbo.DemoServiceImpl Maven / Gradle / Ivy

There is a newer version: 1.5.5
Show newest version
package com.yiji.framework.watcher.dubbo;

/**
 * Created by [email protected] on 2015-03-06 15:05.
 */

/*
    实现对客户端不可见
*/

public class DemoServiceImpl implements DemoService {
	@Override
	public String sayHello(String name) {
		try {
			Thread.sleep(1000);
		} catch (InterruptedException e) {
			e.printStackTrace();
		}
		return "Hello, " + name;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy