forked from QuantBox/QuantBox_XAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQueueEnum.h
71 lines (55 loc) · 1.08 KB
/
QueueEnum.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#ifndef _QUEUE_ENUM_H_
#define _QUEUE_ENUM_H_
enum RequestType :char
{
GetApiType = 0,
GetApiVersion,
GetApiName,
Create, // 创建
Release, // 销毁
Register, // 注册接收队列回调
Config, // 配置参数
Connect, // 开始/连接
Disconnect, // 停止/断开
Clear, // 清理
Process, // 处理
Subscribe, // 订阅
Unsubscribe, // 取消订阅
SubscribeQuote, // 订阅询价
UnsubscribeQuote, // 取消订阅询价
ReqOrderInsert,
ReqQuoteInsert,
ReqOrderAction,
ReqQuoteAction,
ReqQryOrder,
ReqQryTrade,
ReqQryInstrument,
ReqQryTradingAccount,
ReqQryInvestorPosition,
ReqQryInvestorPositionDetail,
ReqQryInstrumentCommissionRate,
ReqQryInstrumentMarginRate,
ReqQrySettlementInfo,
ReqQryHistoricalTicks,
ReqQryHistoricalBars,
ReqQryInvestor,
};
enum ResponeType :char
{
OnConnectionStatus = 64,
OnRtnDepthMarketData,
OnRtnError,
OnRspQryInstrument,
OnRspQryTradingAccount,
OnRspQryInvestorPosition,
OnRspQrySettlementInfo,
OnRtnOrder,
OnRtnTrade,
OnRtnQuote,
OnRtnQuoteRequest,
OnRspQryHistoricalTicks,
OnRspQryHistoricalBars,
OnRspQryInvestor,
OnFilterSubscribe,
};
#endif