Example #1
0
        public bool InsertMessageCommand(string source, string qry)
        {
            IDBCommand command = new InsertGeneralExecutionMessageCommand(source, _GetUniqueQueryId(), qry);

            _messageQueue.Insert(command);
            return(true);
        }
Example #2
0
 public bool InsertMessageCommand(string source, GatFixMessage fixMsg)
 {
     IDBCommand command = new InsertGeneralExecutionMessageCommand(source, _GetUniqueQueryId(), fixMsg);
     _messageQueue.Insert(command);
     return true;
 }
Example #3
0
 public bool InsertMessageCommand(string source, DataRow message)
 {
     IDBCommand command = new InsertGeneralExecutionMessageCommand(source, _GetUniqueQueryId(), message);
     _messageQueue.Insert(command);
     return true;
 }