首页 > 学院 > 开发设计 > 正文

Java核心代码例程之:RMIExample.java

2019-11-18 15:16:52
字体:
来源:转载
供稿:网友

import java.rmi.*;

/**
 * Remote interface for the RMIExampleServer
 * @author Renga
 **/
public interface RMIExample extends Remote {
/**
 * Returns a string to the caller
 * @return A string
 * @throws RemoteException
 **/
public String sayHello() throws RemoteException;
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表