用户列表中了
if(_alluser!=null)
{
User newuser=new User();
newuser.name= name;
newuser.iswhere= iswhere;
newuser.lasttime=newuser.curtime=DateTime.Now;
newuser.sessionid=sessionid;
newuser.ip=ip;
//OnLineUser alluser= new OnLineUser();
AddUserToOnLine(newuser);
}
return(false);
}
}
/*
下面开始建立守护线程类:
(注:此处,开始写的时候本来想做成单件模式的,不过由于以前没有做过这个东西,所以反而发生
了很多问题,最后决定放弃而使用现有的格式)
*/
public class CheckOnline
{
const int DELAY_TIMES = 10000 ; //定义执行的时间间隔为5秒
const int DELAY_SECONDS=60; //将用户掉线时间设置为30秒
private Thread thread ; //定义内部线程
private static bool _flag=false; //定义唯一标志
public CheckOnline()
{
if (!_flag)
&nbs