DUBBO-354 增加异步示例

git-svn-id: http://code.alibabatech.com/svn/dubbo/trunk@1672 1a56cb94-b969-4eaa-88fa-be21384802f2
This commit is contained in:
william.liangf 2012-05-07 13:30:48 +00:00
parent ca28bb6579
commit 0a5faf85a3
1 changed files with 1 additions and 0 deletions

View File

@ -25,6 +25,7 @@ import com.alibaba.dubbo.examples.async.api.AsyncService;
public class AsyncServiceImpl implements AsyncService {
public String sayHello(String name) {
System.out.println("async provider received: " + name);
return "hello, " + name;
}