📄 rmiinterface.java
字号:
package com.topking.rt.rmi.interfaces;
import java.rmi.Remote;
import java.rmi.RemoteException;
import java.util.List;
import com.topking.rt.data.Command;
import com.topking.rt.data.ImageData;
import com.topking.rt.data.NewByteData;
public interface RMIInterface extends Remote {
public ImageData getinitImageData() throws RemoteException;
public List<NewByteData> getChangedImageData() throws RemoteException;
public void executeControllCommand(Command com)throws RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -