Refactored MtApiService: command will be executed in first expert will be invoked by quote tick

This commit is contained in:
DW
2016-04-13 16:41:32 +03:00
parent b803ed8567
commit 6f8a8728ed
7 changed files with 249 additions and 244 deletions
+3 -10
View File
@@ -1,15 +1,8 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MTApiService
namespace MTApiService
{
public interface ICommandManager
{
void EnqueueCommand(MtCommand command);
MtCommand DequeueCommand();
void OnCommandExecuted(MtExpert expert, MtCommand command, MtResponse response);
void EnqueueCommandTask(MtCommandTask task);
MtCommandTask DequeueCommandTask();
}
}