📄 echomanager.java
字号:
/*
* RIC 2 Server Release. by Harry Otten (c) Copyright 2003 hotten@dds.nl
* Check out http://www.hotten.dds.nl/ric/
*
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
USA.
*/
import java.awt.*;
import java.util.Vector;
public class EchoManager extends Thread {
private final int TIMER=30000;
private Vector mijnarray;
public EchoManager(Vector mijnarray) {
this.mijnarray=mijnarray;
}
public void run() {
int teller;
if (TIMER!=0) {
System.out.println("Starting EchoManager..."+TIMER+"ms");
try {
for (;;) {
this.sleep(TIMER);
for (teller=0;teller<mijnarray.size();teller++)
if (((Connection) mijnarray.get(teller)).getUserName() != null)
((Connection) mijnarray.get(teller)).sendPing();
}
} catch (InterruptedException e) {
System.out.println("Stopping EchoManager...");
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -