You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
926 B
35 lines
926 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
using Sog;
|
|
|
|
using ProtoCSStruct;
|
|
|
|
namespace Operation
|
|
{
|
|
public class OneMail
|
|
{
|
|
//public SSSendMailWithRule ruleMail = new SSSendMailWithRule();
|
|
//public FiniteStateMachine<MailStatus, MailMsg> machine;
|
|
//public long selectTime;
|
|
//public int mailId;
|
|
|
|
//public OneMail()
|
|
//{
|
|
// machine = new FiniteStateMachine<MailStatus, MailMsg>(MailStatus.Ready, MailStatusUtils.actionMap, MailStatusUtils.transTable);
|
|
//}
|
|
}
|
|
|
|
public class MailDBData: IServerDataObj
|
|
{
|
|
public override int GetDataType()
|
|
{
|
|
return OperationDataObjType.MailDBDataType;
|
|
}
|
|
|
|
public Queue<long> timeOutCheckTimeQueue = new Queue<long>();
|
|
//public Dictionary<long, OneMail> mailTable = new Dictionary<long, OneMail>();
|
|
}
|
|
}
|
|
|