remoteclientinterface.java

来自「java rmi example. By using rmi to invoke」· Java 代码 · 共 20 行

JAVA
20
字号
/*
 
        Project M4: Distributed Registry
        RemoteClientInterface
        Written by:    	Shuo Feng
        Student Num:   	040171674
        First written: 	2/3/2005
        Last rewritten:	2/3/2005
 */

import java.rmi.Remote;
import java.rmi.RemoteException;

public interface RemoteClientInterface extends Remote {
	public void regist() throws RemoteException;
	public void deregist() throws RemoteException;
	public String getName() throws RemoteException;
	public boolean isAlive() throws RemoteException;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?