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.
29 lines
647 B
29 lines
647 B
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);
|
|
}
|
|
}
|
|
|