27 lines
403 B
C#
27 lines
403 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace upper_limit_crawler
|
|
{
|
|
class ULMonitor : ULObj
|
|
{
|
|
public ULMonitor(ULDataMgr DataMgr) : base(DataMgr)
|
|
{
|
|
}
|
|
|
|
public override void Refresh(int iCurTime)
|
|
{
|
|
if(m_iLastTime == 0)
|
|
{
|
|
base.Refresh(iCurTime);
|
|
return;
|
|
}
|
|
|
|
base.Refresh(iCurTime);
|
|
}
|
|
}
|
|
}
|