[Quickfix-developers] Thomas Bakker Code Example for Send Method
Brought to you by:
orenmnero
From: Parjeet S. <par...@oa...> - 2008-05-02 07:06:17
|
Hi, I was going through the example for Thomas Bakker code; I do not understand how we can call Send method in this example that is from toApp. Code for connecting Public Sub Run(ByVal configFile As String) End Sub Public Sub fromApp(ByVal message As QuickFix.Message, ByVal sessionID As QuickFix.SessionID) Implements QuickFix.Application.fromApp 'Utils.Log("from app - rates") 'Utils.Log(message.ToString) crack(message, sessionID) End Sub Public Sub send(ByVal message As QuickFix.Message) Try QuickFix.Session.sendToTarget(message, m_sessionID) Catch ex As Exception Utils.Log(ex.Message) End Try End Sub I will appreciate your help. Thanks PS |