spyconnectioninterface.java
来自「Ftp服务1.0」· Java 代码 · 共 22 行
JAVA
22 行
package ranab.server.ftp;
import java.io.IOException;
/**
* This interface is used to monitor user activities;
*/
public
interface SpyConnectionInterface {
/**
* Write user request.
*/
void request(String msg) throws IOException;
/**
* Write server response.
*/
void response(String msg) throws IOException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?