chatinterface.java

来自「rmi chat that connects two or more clien」· Java 代码 · 共 11 行

JAVA
11
字号

import java.rmi.*;

public interface ChatInterface extends Remote {
    public void join(Notify n, String name) throws RemoteException;
    
    public void talk(String name, String s) throws RemoteException;
    
    public void leave(Notify n, String name) throws RemoteException;
}

⌨️ 快捷键说明

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