📄 jremservereventslistener.java
字号:
/* * Copyright (C) 2007 Filippo Di Vattimo - See LICENSE * */package fildiv.jremcntl.server.core;import java.util.EventListener;import fildiv.jremcntl.common.core.Command;public interface JRemServerEventsListener extends EventListener { void onServerStarted(); void onServerStopped(); void onDeviceConnected(String deviceName); void onDeviceDisconnected(); void onConnectionListening(); void onClientCommandListening(); void onCommandRun(Command c); void onCommandRunException(Command c, Exception e); void onServerExceptionOccurred(Exception e);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -