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.
30 lines
647 B
30 lines
647 B
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace QM.Exchange.Interface
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 数据处理程序抽象类
|
||
|
/// </summary>
|
||
|
public abstract class DataCommand
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 消息
|
||
|
/// </summary>
|
||
|
public CommonMessage Message{ get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 构造函数
|
||
|
/// </summary>
|
||
|
public DataCommand(CommonMessage message)
|
||
|
{
|
||
|
Message = message;
|
||
|
}
|
||
|
|
||
|
//执行
|
||
|
abstract public void Execute(IExChangeContext exChangeContext,CommonMessage message);
|
||
|
}
|
||
|
}
|