diff --git a/_gen/generate-messages/main.go b/_gen/generate-messages/main.go index 4d254f9d7..64d537d77 100644 --- a/_gen/generate-messages/main.go +++ b/_gen/generate-messages/main.go @@ -41,7 +41,7 @@ func genMessages() { func genMessageImports() string { fileOut := ` -import( +import( "github.com/quickfixgo/quickfix" "github.com/quickfixgo/quickfix/enum" ` @@ -247,7 +247,7 @@ func genMessageRoute(msg *datadictionary.MessageDef) string { //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string,string,quickfix.MessageRoute) { r:=func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m:=new(Message) diff --git a/doc.go b/doc.go index 936076936..096efb0ba 100644 --- a/doc.go +++ b/doc.go @@ -5,35 +5,35 @@ Creating your QuickFIX Application Creating a FIX application is as easy as implementing the QuickFIX Application interface. By implementing these interface methods in your derived type, you are requesting to be notified of events that occur on the FIX engine. The function that you should be most aware of is fromApp. -Here are explanations of what these functions provide for you. +Here are explanations of what these callback functions provide for you. OnCreate(sessionID SessionID) -This method is called when quickfix creates a new session. A session comes into and remains in existence for the life of the application. Sessions exist whether or not a counter party is connected to it. As soon as a session is created, you can begin sending messages to it. If no one is logged on, the messages will be sent at the time a connection is established with the counterparty. +OnCreate is called when quickfix creates a new session. A session comes into and remains in existence for the life of the application. Sessions exist whether or not a counter party is connected to it. As soon as a session is created, you can begin sending messages to it. If no one is logged on, the messages will be sent at the time a connection is established with the counterparty. OnLogon(sessionID SessionID) -This callback notifies you when a valid logon has been established with a counter party. This is called when a connection has been established and the FIX logon process has completed with both parties exchanging valid logon messages. +OnLogon notifies you when a valid logon has been established with a counter party. This is called when a connection has been established and the FIX logon process has completed with both parties exchanging valid logon messages. OnLogout(sessionID SessionID) -This callback notifies you when an FIX session is no longer online. This could happen during a normal logout exchange or because of a forced termination or a loss of network connection. +OnLogout notifies you when an FIX session is no longer online. This could happen during a normal logout exchange or because of a forced termination or a loss of network connection. ToAdmin(message Message, sessionID SessionID) -This callback provides you with a peak at the administrative messages that are being sent from your FIX engine to the counter party. This is normally not useful for an application however it is provided for any logging you may wish to do. Notice that the Message is not const. This allows you to add fields before an adminstrative message before it is sent out. +ToAdmin provides you with a peak at the administrative messages that are being sent from your FIX engine to the counter party. This is normally not useful for an application however it is provided for any logging you may wish to do. Notice that the Message is not const. This allows you to add fields before an adminstrative message is sent out. ToApp(message Message, sessionID SessionID) error -This is a callback for application messages that you are being sent to a counterparty. Notice that the Message is not const. This allows you to add fields before an application message before it is sent out. +ToApp notifies you of application messages that you are being sent to a counterparty. Notice that the Message is not const. This allows you to add fields before an application message before it is sent out. FromAdmin(message Message, sessionID SessionID) MessageRejectError -This callback notifies you when an administrative message is sent from a counterparty to your FIX engine. This can be usefull for doing extra validation on logon messages such as for checking passwords. +FromAdmin notifies you when an administrative message is sent from a counterparty to your FIX engine. This can be usefull for doing extra validation on logon messages such as for checking passwords. FromApp(msg Message, sessionID SessionID) MessageRejectError -This is one of the core entry points for your FIX application. Every application level request will come through here. If, for example, your application is a sell-side OMS, this is where you will get your new order requests. If you were a buy side, you would get your execution reports here. +FromApp is one of the core entry points for your FIX application. Every application level request will come through here. If, for example, your application is a sell-side OMS, this is where you will get your new order requests. If you were a buy side, you would get your execution reports here. The sample code below shows how you might start up a FIX acceptor which listens on a socket. If you wanted an initiator, you would simply replace NewAcceptor in this code fragment with NewInitiator. diff --git a/fix40/advertisement/Advertisement.go b/fix40/advertisement/Advertisement.go index 1c6ab91b0..6b01648c3 100644 --- a/fix40/advertisement/Advertisement.go +++ b/fix40/advertisement/Advertisement.go @@ -51,7 +51,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/allocation/Allocation.go b/fix40/allocation/Allocation.go index 73a0c198d..e36c8dc8c 100644 --- a/fix40/allocation/Allocation.go +++ b/fix40/allocation/Allocation.go @@ -133,7 +133,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/allocationack/AllocationACK.go b/fix40/allocationack/AllocationACK.go index 7a120a14b..2c5527d8e 100644 --- a/fix40/allocationack/AllocationACK.go +++ b/fix40/allocationack/AllocationACK.go @@ -37,7 +37,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/dontknowtrade/DontKnowTrade.go b/fix40/dontknowtrade/DontKnowTrade.go index cbf213977..37225a0c2 100644 --- a/fix40/dontknowtrade/DontKnowTrade.go +++ b/fix40/dontknowtrade/DontKnowTrade.go @@ -38,7 +38,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/email/Email.go b/fix40/email/Email.go index 1784f0118..1329df7e0 100644 --- a/fix40/email/Email.go +++ b/fix40/email/Email.go @@ -39,7 +39,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/executionreport/ExecutionReport.go b/fix40/executionreport/ExecutionReport.go index 141a01985..76bea7bed 100644 --- a/fix40/executionreport/ExecutionReport.go +++ b/fix40/executionreport/ExecutionReport.go @@ -121,7 +121,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/heartbeat/Heartbeat.go b/fix40/heartbeat/Heartbeat.go index 53757ad96..d48a133cc 100644 --- a/fix40/heartbeat/Heartbeat.go +++ b/fix40/heartbeat/Heartbeat.go @@ -22,7 +22,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/indicationofinterest/IndicationofInterest.go b/fix40/indicationofinterest/IndicationofInterest.go index a1851e16b..d29b16b2a 100644 --- a/fix40/indicationofinterest/IndicationofInterest.go +++ b/fix40/indicationofinterest/IndicationofInterest.go @@ -59,7 +59,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/listcancelrequest/ListCancelRequest.go b/fix40/listcancelrequest/ListCancelRequest.go index be1bc76e7..d28d16368 100644 --- a/fix40/listcancelrequest/ListCancelRequest.go +++ b/fix40/listcancelrequest/ListCancelRequest.go @@ -26,7 +26,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/listexecute/ListExecute.go b/fix40/listexecute/ListExecute.go index 7f15668b9..80deabe39 100644 --- a/fix40/listexecute/ListExecute.go +++ b/fix40/listexecute/ListExecute.go @@ -26,7 +26,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/liststatus/ListStatus.go b/fix40/liststatus/ListStatus.go index b81b23438..af15ee51a 100644 --- a/fix40/liststatus/ListStatus.go +++ b/fix40/liststatus/ListStatus.go @@ -42,7 +42,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/liststatusrequest/ListStatusRequest.go b/fix40/liststatusrequest/ListStatusRequest.go index dc4292c12..bf67afb16 100644 --- a/fix40/liststatusrequest/ListStatusRequest.go +++ b/fix40/liststatusrequest/ListStatusRequest.go @@ -26,7 +26,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/logon/Logon.go b/fix40/logon/Logon.go index 526e99afb..c27d6e35e 100644 --- a/fix40/logon/Logon.go +++ b/fix40/logon/Logon.go @@ -28,7 +28,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/logout/Logout.go b/fix40/logout/Logout.go index 4c8d885ac..d0482b1c7 100644 --- a/fix40/logout/Logout.go +++ b/fix40/logout/Logout.go @@ -22,7 +22,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/neworderlist/NewOrderList.go b/fix40/neworderlist/NewOrderList.go index 5e1e45a17..6023d2f9d 100644 --- a/fix40/neworderlist/NewOrderList.go +++ b/fix40/neworderlist/NewOrderList.go @@ -99,7 +99,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/newordersingle/NewOrderSingle.go b/fix40/newordersingle/NewOrderSingle.go index bb402f9a2..552b497bf 100644 --- a/fix40/newordersingle/NewOrderSingle.go +++ b/fix40/newordersingle/NewOrderSingle.go @@ -93,7 +93,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/news/News.go b/fix40/news/News.go index 6ba450302..fb02ccf4e 100644 --- a/fix40/news/News.go +++ b/fix40/news/News.go @@ -35,7 +35,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/ordercancelreject/OrderCancelReject.go b/fix40/ordercancelreject/OrderCancelReject.go index b401b166b..cad7b7103 100644 --- a/fix40/ordercancelreject/OrderCancelReject.go +++ b/fix40/ordercancelreject/OrderCancelReject.go @@ -34,7 +34,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/ordercancelreplacerequest/OrderCancelReplaceRequest.go b/fix40/ordercancelreplacerequest/OrderCancelReplaceRequest.go index 086423b59..4e64c9a04 100644 --- a/fix40/ordercancelreplacerequest/OrderCancelReplaceRequest.go +++ b/fix40/ordercancelreplacerequest/OrderCancelReplaceRequest.go @@ -89,7 +89,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/ordercancelrequest/OrderCancelRequest.go b/fix40/ordercancelrequest/OrderCancelRequest.go index 5da562095..333a0fc76 100644 --- a/fix40/ordercancelrequest/OrderCancelRequest.go +++ b/fix40/ordercancelrequest/OrderCancelRequest.go @@ -52,7 +52,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/orderstatusrequest/OrderStatusRequest.go b/fix40/orderstatusrequest/OrderStatusRequest.go index 0838bc8af..b3ac8da35 100644 --- a/fix40/orderstatusrequest/OrderStatusRequest.go +++ b/fix40/orderstatusrequest/OrderStatusRequest.go @@ -38,7 +38,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/quote/Quote.go b/fix40/quote/Quote.go index 50e4c7e20..187212e8a 100644 --- a/fix40/quote/Quote.go +++ b/fix40/quote/Quote.go @@ -47,7 +47,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/quoterequest/QuoteRequest.go b/fix40/quoterequest/QuoteRequest.go index 17b167ff3..082efdcf1 100644 --- a/fix40/quoterequest/QuoteRequest.go +++ b/fix40/quoterequest/QuoteRequest.go @@ -40,7 +40,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/reject/Reject.go b/fix40/reject/Reject.go index 63b4aac51..399d887e7 100644 --- a/fix40/reject/Reject.go +++ b/fix40/reject/Reject.go @@ -24,7 +24,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/resendrequest/ResendRequest.go b/fix40/resendrequest/ResendRequest.go index e7e1dc957..84f7167c0 100644 --- a/fix40/resendrequest/ResendRequest.go +++ b/fix40/resendrequest/ResendRequest.go @@ -24,7 +24,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/sequencereset/SequenceReset.go b/fix40/sequencereset/SequenceReset.go index 0db5a20d8..a3b9f65e6 100644 --- a/fix40/sequencereset/SequenceReset.go +++ b/fix40/sequencereset/SequenceReset.go @@ -24,7 +24,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix40/testrequest/TestRequest.go b/fix40/testrequest/TestRequest.go index 263e0fe38..ca05383f0 100644 --- a/fix40/testrequest/TestRequest.go +++ b/fix40/testrequest/TestRequest.go @@ -22,7 +22,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/advertisement/Advertisement.go b/fix41/advertisement/Advertisement.go index 0b637f823..9a301c2e1 100644 --- a/fix41/advertisement/Advertisement.go +++ b/fix41/advertisement/Advertisement.go @@ -71,7 +71,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/allocation/Allocation.go b/fix41/allocation/Allocation.go index e1793c3cf..98ab65fe5 100644 --- a/fix41/allocation/Allocation.go +++ b/fix41/allocation/Allocation.go @@ -173,7 +173,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/allocationack/AllocationACK.go b/fix41/allocationack/AllocationACK.go index a8266ef28..a743b3774 100644 --- a/fix41/allocationack/AllocationACK.go +++ b/fix41/allocationack/AllocationACK.go @@ -37,7 +37,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/dontknowtrade/DontKnowTrade.go b/fix41/dontknowtrade/DontKnowTrade.go index 670e34fe2..49f14fd3f 100644 --- a/fix41/dontknowtrade/DontKnowTrade.go +++ b/fix41/dontknowtrade/DontKnowTrade.go @@ -64,7 +64,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/email/Email.go b/fix41/email/Email.go index 06550d97b..17b41fc55 100644 --- a/fix41/email/Email.go +++ b/fix41/email/Email.go @@ -77,7 +77,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/executionreport/ExecutionReport.go b/fix41/executionreport/ExecutionReport.go index adfe7f7af..c0b19d8c1 100644 --- a/fix41/executionreport/ExecutionReport.go +++ b/fix41/executionreport/ExecutionReport.go @@ -139,7 +139,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/heartbeat/Heartbeat.go b/fix41/heartbeat/Heartbeat.go index 1c6f2f2c7..b7dbb9db5 100644 --- a/fix41/heartbeat/Heartbeat.go +++ b/fix41/heartbeat/Heartbeat.go @@ -22,7 +22,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/indicationofinterest/IndicationofInterest.go b/fix41/indicationofinterest/IndicationofInterest.go index 8b4554cab..9077142b6 100644 --- a/fix41/indicationofinterest/IndicationofInterest.go +++ b/fix41/indicationofinterest/IndicationofInterest.go @@ -83,7 +83,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/listcancelrequest/ListCancelRequest.go b/fix41/listcancelrequest/ListCancelRequest.go index 99469baf7..56a52fd12 100644 --- a/fix41/listcancelrequest/ListCancelRequest.go +++ b/fix41/listcancelrequest/ListCancelRequest.go @@ -26,7 +26,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/listexecute/ListExecute.go b/fix41/listexecute/ListExecute.go index 9cb66e0a2..9d46c6ffe 100644 --- a/fix41/listexecute/ListExecute.go +++ b/fix41/listexecute/ListExecute.go @@ -26,7 +26,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/liststatus/ListStatus.go b/fix41/liststatus/ListStatus.go index 527a911ca..9cef53460 100644 --- a/fix41/liststatus/ListStatus.go +++ b/fix41/liststatus/ListStatus.go @@ -44,7 +44,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/liststatusrequest/ListStatusRequest.go b/fix41/liststatusrequest/ListStatusRequest.go index 6cfbd59f6..66366ed70 100644 --- a/fix41/liststatusrequest/ListStatusRequest.go +++ b/fix41/liststatusrequest/ListStatusRequest.go @@ -26,7 +26,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/logon/Logon.go b/fix41/logon/Logon.go index f631e34c3..05ec67bd9 100644 --- a/fix41/logon/Logon.go +++ b/fix41/logon/Logon.go @@ -30,7 +30,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/logout/Logout.go b/fix41/logout/Logout.go index a7c47d51d..63e644c28 100644 --- a/fix41/logout/Logout.go +++ b/fix41/logout/Logout.go @@ -22,7 +22,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/neworderlist/NewOrderList.go b/fix41/neworderlist/NewOrderList.go index b1e7d2f02..58e870047 100644 --- a/fix41/neworderlist/NewOrderList.go +++ b/fix41/neworderlist/NewOrderList.go @@ -127,7 +127,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/newordersingle/NewOrderSingle.go b/fix41/newordersingle/NewOrderSingle.go index 4931dca8f..9a4ad8977 100644 --- a/fix41/newordersingle/NewOrderSingle.go +++ b/fix41/newordersingle/NewOrderSingle.go @@ -123,7 +123,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/news/News.go b/fix41/news/News.go index edc2615a2..7ad9411c9 100644 --- a/fix41/news/News.go +++ b/fix41/news/News.go @@ -73,7 +73,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/ordercancelreject/OrderCancelReject.go b/fix41/ordercancelreject/OrderCancelReject.go index 9ec899b39..e2816155e 100644 --- a/fix41/ordercancelreject/OrderCancelReject.go +++ b/fix41/ordercancelreject/OrderCancelReject.go @@ -40,7 +40,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/ordercancelreplacerequest/OrderCancelReplaceRequest.go b/fix41/ordercancelreplacerequest/OrderCancelReplaceRequest.go index d95ab2c6d..81b44e612 100644 --- a/fix41/ordercancelreplacerequest/OrderCancelReplaceRequest.go +++ b/fix41/ordercancelreplacerequest/OrderCancelReplaceRequest.go @@ -121,7 +121,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/ordercancelrequest/OrderCancelRequest.go b/fix41/ordercancelrequest/OrderCancelRequest.go index 05ba0adfd..14fc1eb42 100644 --- a/fix41/ordercancelrequest/OrderCancelRequest.go +++ b/fix41/ordercancelrequest/OrderCancelRequest.go @@ -66,7 +66,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/orderstatusrequest/OrderStatusRequest.go b/fix41/orderstatusrequest/OrderStatusRequest.go index 758eba77b..385191698 100644 --- a/fix41/orderstatusrequest/OrderStatusRequest.go +++ b/fix41/orderstatusrequest/OrderStatusRequest.go @@ -56,7 +56,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/quote/Quote.go b/fix41/quote/Quote.go index 72ca8f0ea..e1ce33e7e 100644 --- a/fix41/quote/Quote.go +++ b/fix41/quote/Quote.go @@ -79,7 +79,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/quoterequest/QuoteRequest.go b/fix41/quoterequest/QuoteRequest.go index ac227f708..f5322d03b 100644 --- a/fix41/quoterequest/QuoteRequest.go +++ b/fix41/quoterequest/QuoteRequest.go @@ -62,7 +62,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/reject/Reject.go b/fix41/reject/Reject.go index 7753cd6aa..57b614702 100644 --- a/fix41/reject/Reject.go +++ b/fix41/reject/Reject.go @@ -24,7 +24,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/resendrequest/ResendRequest.go b/fix41/resendrequest/ResendRequest.go index cfcdf5484..25a9e280d 100644 --- a/fix41/resendrequest/ResendRequest.go +++ b/fix41/resendrequest/ResendRequest.go @@ -24,7 +24,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/sequencereset/SequenceReset.go b/fix41/sequencereset/SequenceReset.go index fdf25e660..5640a6bb7 100644 --- a/fix41/sequencereset/SequenceReset.go +++ b/fix41/sequencereset/SequenceReset.go @@ -24,7 +24,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/settlementinstructions/SettlementInstructions.go b/fix41/settlementinstructions/SettlementInstructions.go index d76a1b2b8..d2886cd86 100644 --- a/fix41/settlementinstructions/SettlementInstructions.go +++ b/fix41/settlementinstructions/SettlementInstructions.go @@ -89,7 +89,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix41/testrequest/TestRequest.go b/fix41/testrequest/TestRequest.go index 38832eb9a..8215aeb20 100644 --- a/fix41/testrequest/TestRequest.go +++ b/fix41/testrequest/TestRequest.go @@ -22,7 +22,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/advertisement/Advertisement.go b/fix42/advertisement/Advertisement.go index 8845abaa1..9c5477775 100644 --- a/fix42/advertisement/Advertisement.go +++ b/fix42/advertisement/Advertisement.go @@ -89,7 +89,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/allocation/Allocation.go b/fix42/allocation/Allocation.go index 7e82df13d..661813ecf 100644 --- a/fix42/allocation/Allocation.go +++ b/fix42/allocation/Allocation.go @@ -199,7 +199,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/allocationack/AllocationACK.go b/fix42/allocationack/AllocationACK.go index c7a468bdd..bf5fcfe93 100644 --- a/fix42/allocationack/AllocationACK.go +++ b/fix42/allocationack/AllocationACK.go @@ -41,7 +41,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/bidrequest/BidRequest.go b/fix42/bidrequest/BidRequest.go index a2cebb666..cba1bbb97 100644 --- a/fix42/bidrequest/BidRequest.go +++ b/fix42/bidrequest/BidRequest.go @@ -123,7 +123,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/bidresponse/BidResponse.go b/fix42/bidresponse/BidResponse.go index 6edf47c0e..342f65338 100644 --- a/fix42/bidresponse/BidResponse.go +++ b/fix42/bidresponse/BidResponse.go @@ -60,7 +60,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/businessmessagereject/BusinessMessageReject.go b/fix42/businessmessagereject/BusinessMessageReject.go index 135db62ed..71da03e4a 100644 --- a/fix42/businessmessagereject/BusinessMessageReject.go +++ b/fix42/businessmessagereject/BusinessMessageReject.go @@ -34,7 +34,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/dontknowtrade/DontKnowTrade.go b/fix42/dontknowtrade/DontKnowTrade.go index 25ae33abd..4b56c0893 100644 --- a/fix42/dontknowtrade/DontKnowTrade.go +++ b/fix42/dontknowtrade/DontKnowTrade.go @@ -80,7 +80,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/email/Email.go b/fix42/email/Email.go index b98fe19ae..57a457c51 100644 --- a/fix42/email/Email.go +++ b/fix42/email/Email.go @@ -107,7 +107,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/executionreport/ExecutionReport.go b/fix42/executionreport/ExecutionReport.go index 35f70e9b9..acb273102 100644 --- a/fix42/executionreport/ExecutionReport.go +++ b/fix42/executionreport/ExecutionReport.go @@ -217,7 +217,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/heartbeat/Heartbeat.go b/fix42/heartbeat/Heartbeat.go index b9ef635d6..263851d6e 100644 --- a/fix42/heartbeat/Heartbeat.go +++ b/fix42/heartbeat/Heartbeat.go @@ -22,7 +22,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/indicationofinterest/IndicationofInterest.go b/fix42/indicationofinterest/IndicationofInterest.go index b5677b2ec..627160b67 100644 --- a/fix42/indicationofinterest/IndicationofInterest.go +++ b/fix42/indicationofinterest/IndicationofInterest.go @@ -111,7 +111,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/listcancelrequest/ListCancelRequest.go b/fix42/listcancelrequest/ListCancelRequest.go index 7c73085fd..609fba1f6 100644 --- a/fix42/listcancelrequest/ListCancelRequest.go +++ b/fix42/listcancelrequest/ListCancelRequest.go @@ -31,7 +31,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/listexecute/ListExecute.go b/fix42/listexecute/ListExecute.go index d42499b76..4f18fac66 100644 --- a/fix42/listexecute/ListExecute.go +++ b/fix42/listexecute/ListExecute.go @@ -35,7 +35,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/liststatus/ListStatus.go b/fix42/liststatus/ListStatus.go index 5740a8d37..9f737597e 100644 --- a/fix42/liststatus/ListStatus.go +++ b/fix42/liststatus/ListStatus.go @@ -67,7 +67,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/liststatusrequest/ListStatusRequest.go b/fix42/liststatusrequest/ListStatusRequest.go index 8640cd67b..aae2909f5 100644 --- a/fix42/liststatusrequest/ListStatusRequest.go +++ b/fix42/liststatusrequest/ListStatusRequest.go @@ -28,7 +28,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/liststrikeprice/ListStrikePrice.go b/fix42/liststrikeprice/ListStrikePrice.go index 9cbe1978e..a101a712c 100644 --- a/fix42/liststrikeprice/ListStrikePrice.go +++ b/fix42/liststrikeprice/ListStrikePrice.go @@ -84,7 +84,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/logon/Logon.go b/fix42/logon/Logon.go index 343beff85..f53821fa5 100644 --- a/fix42/logon/Logon.go +++ b/fix42/logon/Logon.go @@ -42,7 +42,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/logout/Logout.go b/fix42/logout/Logout.go index 62bd2cc53..3b0e40741 100644 --- a/fix42/logout/Logout.go +++ b/fix42/logout/Logout.go @@ -26,7 +26,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go b/fix42/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go index 92ad69e38..0cf19feca 100644 --- a/fix42/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go +++ b/fix42/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go @@ -141,7 +141,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/marketdatarequest/MarketDataRequest.go b/fix42/marketdatarequest/MarketDataRequest.go index e7350d0e0..d8e34ffbd 100644 --- a/fix42/marketdatarequest/MarketDataRequest.go +++ b/fix42/marketdatarequest/MarketDataRequest.go @@ -84,7 +84,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/marketdatarequestreject/MarketDataRequestReject.go b/fix42/marketdatarequestreject/MarketDataRequestReject.go index 1ac9fa40f..c7da8b0b0 100644 --- a/fix42/marketdatarequestreject/MarketDataRequestReject.go +++ b/fix42/marketdatarequestreject/MarketDataRequestReject.go @@ -30,7 +30,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go b/fix42/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go index 2335a3ac6..846aa7642 100644 --- a/fix42/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go +++ b/fix42/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go @@ -133,7 +133,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/massquote/MassQuote.go b/fix42/massquote/MassQuote.go index 2ed8eec7f..0e9e4ba5f 100644 --- a/fix42/massquote/MassQuote.go +++ b/fix42/massquote/MassQuote.go @@ -159,7 +159,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/neworderlist/NewOrderList.go b/fix42/neworderlist/NewOrderList.go index b13b47a2b..beedc5347 100644 --- a/fix42/neworderlist/NewOrderList.go +++ b/fix42/neworderlist/NewOrderList.go @@ -211,7 +211,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/newordersingle/NewOrderSingle.go b/fix42/newordersingle/NewOrderSingle.go index 1e2370b3a..32f0ffb8c 100644 --- a/fix42/newordersingle/NewOrderSingle.go +++ b/fix42/newordersingle/NewOrderSingle.go @@ -177,7 +177,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/news/News.go b/fix42/news/News.go index 7b08f0fbf..0fa2f4290 100644 --- a/fix42/news/News.go +++ b/fix42/news/News.go @@ -103,7 +103,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/ordercancelreject/OrderCancelReject.go b/fix42/ordercancelreject/OrderCancelReject.go index 21479db77..cd301553c 100644 --- a/fix42/ordercancelreject/OrderCancelReject.go +++ b/fix42/ordercancelreject/OrderCancelReject.go @@ -51,7 +51,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/ordercancelreplacerequest/OrderCancelReplaceRequest.go b/fix42/ordercancelreplacerequest/OrderCancelReplaceRequest.go index bb49aaa97..46f98d486 100644 --- a/fix42/ordercancelreplacerequest/OrderCancelReplaceRequest.go +++ b/fix42/ordercancelreplacerequest/OrderCancelReplaceRequest.go @@ -175,7 +175,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/ordercancelrequest/OrderCancelRequest.go b/fix42/ordercancelrequest/OrderCancelRequest.go index 36d89e035..d4f2df5a6 100644 --- a/fix42/ordercancelrequest/OrderCancelRequest.go +++ b/fix42/ordercancelrequest/OrderCancelRequest.go @@ -91,7 +91,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/orderstatusrequest/OrderStatusRequest.go b/fix42/orderstatusrequest/OrderStatusRequest.go index 50db21897..8b1983f04 100644 --- a/fix42/orderstatusrequest/OrderStatusRequest.go +++ b/fix42/orderstatusrequest/OrderStatusRequest.go @@ -70,7 +70,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/quote/Quote.go b/fix42/quote/Quote.go index b277bac9a..017d36838 100644 --- a/fix42/quote/Quote.go +++ b/fix42/quote/Quote.go @@ -97,7 +97,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/quoteacknowledgement/QuoteAcknowledgement.go b/fix42/quoteacknowledgement/QuoteAcknowledgement.go index 8bf518afa..057f80352 100644 --- a/fix42/quoteacknowledgement/QuoteAcknowledgement.go +++ b/fix42/quoteacknowledgement/QuoteAcknowledgement.go @@ -130,7 +130,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/quotecancel/QuoteCancel.go b/fix42/quotecancel/QuoteCancel.go index e4dd6bdcd..105d38e00 100644 --- a/fix42/quotecancel/QuoteCancel.go +++ b/fix42/quotecancel/QuoteCancel.go @@ -76,7 +76,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/quoterequest/QuoteRequest.go b/fix42/quoterequest/QuoteRequest.go index 1899a8ecb..a46bf8f78 100644 --- a/fix42/quoterequest/QuoteRequest.go +++ b/fix42/quoterequest/QuoteRequest.go @@ -91,7 +91,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/quotestatusrequest/QuoteStatusRequest.go b/fix42/quotestatusrequest/QuoteStatusRequest.go index fb576ac1d..71e6b4b31 100644 --- a/fix42/quotestatusrequest/QuoteStatusRequest.go +++ b/fix42/quotestatusrequest/QuoteStatusRequest.go @@ -64,7 +64,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/reject/Reject.go b/fix42/reject/Reject.go index 3fb7e3643..d60bb9f77 100644 --- a/fix42/reject/Reject.go +++ b/fix42/reject/Reject.go @@ -34,7 +34,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/resendrequest/ResendRequest.go b/fix42/resendrequest/ResendRequest.go index dd87826a1..68273ea3d 100644 --- a/fix42/resendrequest/ResendRequest.go +++ b/fix42/resendrequest/ResendRequest.go @@ -24,7 +24,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/securitydefinition/SecurityDefinition.go b/fix42/securitydefinition/SecurityDefinition.go index 23b63d7d9..b5e7fb072 100644 --- a/fix42/securitydefinition/SecurityDefinition.go +++ b/fix42/securitydefinition/SecurityDefinition.go @@ -126,7 +126,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/securitydefinitionrequest/SecurityDefinitionRequest.go b/fix42/securitydefinitionrequest/SecurityDefinitionRequest.go index 502e280ac..92bb82674 100644 --- a/fix42/securitydefinitionrequest/SecurityDefinitionRequest.go +++ b/fix42/securitydefinitionrequest/SecurityDefinitionRequest.go @@ -122,7 +122,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/securitystatus/SecurityStatus.go b/fix42/securitystatus/SecurityStatus.go index f28047745..ab31370e7 100644 --- a/fix42/securitystatus/SecurityStatus.go +++ b/fix42/securitystatus/SecurityStatus.go @@ -93,7 +93,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/securitystatusrequest/SecurityStatusRequest.go b/fix42/securitystatusrequest/SecurityStatusRequest.go index 7a0f01b3f..3bb15d828 100644 --- a/fix42/securitystatusrequest/SecurityStatusRequest.go +++ b/fix42/securitystatusrequest/SecurityStatusRequest.go @@ -66,7 +66,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/sequencereset/SequenceReset.go b/fix42/sequencereset/SequenceReset.go index 5817c6a41..5774c1c7d 100644 --- a/fix42/sequencereset/SequenceReset.go +++ b/fix42/sequencereset/SequenceReset.go @@ -24,7 +24,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/settlementinstructions/SettlementInstructions.go b/fix42/settlementinstructions/SettlementInstructions.go index 910b89ac1..4c9fd0bc8 100644 --- a/fix42/settlementinstructions/SettlementInstructions.go +++ b/fix42/settlementinstructions/SettlementInstructions.go @@ -93,7 +93,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/testrequest/TestRequest.go b/fix42/testrequest/TestRequest.go index ad5af94cf..4c1955616 100644 --- a/fix42/testrequest/TestRequest.go +++ b/fix42/testrequest/TestRequest.go @@ -22,7 +22,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/tradingsessionstatus/TradingSessionStatus.go b/fix42/tradingsessionstatus/TradingSessionStatus.go index 7ee52e817..4eebd3e80 100644 --- a/fix42/tradingsessionstatus/TradingSessionStatus.go +++ b/fix42/tradingsessionstatus/TradingSessionStatus.go @@ -51,7 +51,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix42/tradingsessionstatusrequest/TradingSessionStatusRequest.go b/fix42/tradingsessionstatusrequest/TradingSessionStatusRequest.go index 4338522b2..82c2aa919 100644 --- a/fix42/tradingsessionstatusrequest/TradingSessionStatusRequest.go +++ b/fix42/tradingsessionstatusrequest/TradingSessionStatusRequest.go @@ -30,7 +30,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/advertisement/Advertisement.go b/fix43/advertisement/Advertisement.go index 01778ff2c..a49a66c70 100644 --- a/fix43/advertisement/Advertisement.go +++ b/fix43/advertisement/Advertisement.go @@ -56,7 +56,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/allocation/Allocation.go b/fix43/allocation/Allocation.go index 5da6bf5b8..3e5a7d575 100644 --- a/fix43/allocation/Allocation.go +++ b/fix43/allocation/Allocation.go @@ -185,7 +185,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/allocationack/AllocationAck.go b/fix43/allocationack/AllocationAck.go index b5443bee3..9d696dfdf 100644 --- a/fix43/allocationack/AllocationAck.go +++ b/fix43/allocationack/AllocationAck.go @@ -42,7 +42,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/bidrequest/BidRequest.go b/fix43/bidrequest/BidRequest.go index dd8a3d9a5..dfc375503 100644 --- a/fix43/bidrequest/BidRequest.go +++ b/fix43/bidrequest/BidRequest.go @@ -125,7 +125,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/bidresponse/BidResponse.go b/fix43/bidresponse/BidResponse.go index e52b11171..cd21a2795 100644 --- a/fix43/bidresponse/BidResponse.go +++ b/fix43/bidresponse/BidResponse.go @@ -61,7 +61,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/businessmessagereject/BusinessMessageReject.go b/fix43/businessmessagereject/BusinessMessageReject.go index dd8531d24..14d2c645a 100644 --- a/fix43/businessmessagereject/BusinessMessageReject.go +++ b/fix43/businessmessagereject/BusinessMessageReject.go @@ -34,7 +34,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/crossordercancelreplacerequest/CrossOrderCancelReplaceRequest.go b/fix43/crossordercancelreplacerequest/CrossOrderCancelReplaceRequest.go index 0075c77a6..ba7dddc07 100644 --- a/fix43/crossordercancelreplacerequest/CrossOrderCancelReplaceRequest.go +++ b/fix43/crossordercancelreplacerequest/CrossOrderCancelReplaceRequest.go @@ -207,7 +207,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/crossordercancelrequest/CrossOrderCancelRequest.go b/fix43/crossordercancelrequest/CrossOrderCancelRequest.go index 9bcdb3c0e..01cca89a1 100644 --- a/fix43/crossordercancelrequest/CrossOrderCancelRequest.go +++ b/fix43/crossordercancelrequest/CrossOrderCancelRequest.go @@ -70,7 +70,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/derivativesecuritylist/DerivativeSecurityList.go b/fix43/derivativesecuritylist/DerivativeSecurityList.go index 746240249..7d06fa593 100644 --- a/fix43/derivativesecuritylist/DerivativeSecurityList.go +++ b/fix43/derivativesecuritylist/DerivativeSecurityList.go @@ -63,7 +63,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/derivativesecuritylistrequest/DerivativeSecurityListRequest.go b/fix43/derivativesecuritylistrequest/DerivativeSecurityListRequest.go index 22b707183..fb1401d28 100644 --- a/fix43/derivativesecuritylistrequest/DerivativeSecurityListRequest.go +++ b/fix43/derivativesecuritylistrequest/DerivativeSecurityListRequest.go @@ -41,7 +41,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/dontknowtrade/DontKnowTrade.go b/fix43/dontknowtrade/DontKnowTrade.go index 578800469..8e6770d1a 100644 --- a/fix43/dontknowtrade/DontKnowTrade.go +++ b/fix43/dontknowtrade/DontKnowTrade.go @@ -44,7 +44,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/email/Email.go b/fix43/email/Email.go index 7264bc25a..ff95fea3b 100644 --- a/fix43/email/Email.go +++ b/fix43/email/Email.go @@ -72,7 +72,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/executionreport/ExecutionReport.go b/fix43/executionreport/ExecutionReport.go index e0a7018b8..3d6ed08f7 100644 --- a/fix43/executionreport/ExecutionReport.go +++ b/fix43/executionreport/ExecutionReport.go @@ -308,7 +308,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/heartbeat/Heartbeat.go b/fix43/heartbeat/Heartbeat.go index b81e5faac..b7f5d7f0f 100644 --- a/fix43/heartbeat/Heartbeat.go +++ b/fix43/heartbeat/Heartbeat.go @@ -22,7 +22,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/ioi/IOI.go b/fix43/ioi/IOI.go index def82ba59..b2c0a11d4 100644 --- a/fix43/ioi/IOI.go +++ b/fix43/ioi/IOI.go @@ -81,7 +81,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/listcancelrequest/ListCancelRequest.go b/fix43/listcancelrequest/ListCancelRequest.go index 01dca3c49..7150570c8 100644 --- a/fix43/listcancelrequest/ListCancelRequest.go +++ b/fix43/listcancelrequest/ListCancelRequest.go @@ -33,7 +33,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/listexecute/ListExecute.go b/fix43/listexecute/ListExecute.go index 3b973671d..0d46e1971 100644 --- a/fix43/listexecute/ListExecute.go +++ b/fix43/listexecute/ListExecute.go @@ -35,7 +35,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/liststatus/ListStatus.go b/fix43/liststatus/ListStatus.go index 311c9e396..c63b82507 100644 --- a/fix43/liststatus/ListStatus.go +++ b/fix43/liststatus/ListStatus.go @@ -71,7 +71,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/liststatusrequest/ListStatusRequest.go b/fix43/liststatusrequest/ListStatusRequest.go index 31122f62e..7e6cbc764 100644 --- a/fix43/liststatusrequest/ListStatusRequest.go +++ b/fix43/liststatusrequest/ListStatusRequest.go @@ -28,7 +28,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/liststrikeprice/ListStrikePrice.go b/fix43/liststrikeprice/ListStrikePrice.go index 9b9e74fd5..6f2dcb1bb 100644 --- a/fix43/liststrikeprice/ListStrikePrice.go +++ b/fix43/liststrikeprice/ListStrikePrice.go @@ -51,7 +51,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/logon/Logon.go b/fix43/logon/Logon.go index 77d785541..80a0689b3 100644 --- a/fix43/logon/Logon.go +++ b/fix43/logon/Logon.go @@ -48,7 +48,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/logout/Logout.go b/fix43/logout/Logout.go index f36f6ecce..3cb34411c 100644 --- a/fix43/logout/Logout.go +++ b/fix43/logout/Logout.go @@ -26,7 +26,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go b/fix43/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go index de89fbfe9..78a7482f7 100644 --- a/fix43/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go +++ b/fix43/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go @@ -116,7 +116,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/marketdatarequest/MarketDataRequest.go b/fix43/marketdatarequest/MarketDataRequest.go index 201fbc2b9..dada0f852 100644 --- a/fix43/marketdatarequest/MarketDataRequest.go +++ b/fix43/marketdatarequest/MarketDataRequest.go @@ -63,7 +63,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/marketdatarequestreject/MarketDataRequestReject.go b/fix43/marketdatarequestreject/MarketDataRequestReject.go index 22e2ad53a..df6d1b410 100644 --- a/fix43/marketdatarequestreject/MarketDataRequestReject.go +++ b/fix43/marketdatarequestreject/MarketDataRequestReject.go @@ -30,7 +30,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go b/fix43/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go index 76243fe27..7b36b82d5 100644 --- a/fix43/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go +++ b/fix43/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go @@ -108,7 +108,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/massquote/MassQuote.go b/fix43/massquote/MassQuote.go index 9831b0de3..7475ade16 100644 --- a/fix43/massquote/MassQuote.go +++ b/fix43/massquote/MassQuote.go @@ -112,7 +112,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/massquoteacknowledgement/MassQuoteAcknowledgement.go b/fix43/massquoteacknowledgement/MassQuoteAcknowledgement.go index 8ddec881a..1151594fe 100644 --- a/fix43/massquoteacknowledgement/MassQuoteAcknowledgement.go +++ b/fix43/massquoteacknowledgement/MassQuoteAcknowledgement.go @@ -114,7 +114,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/multilegordercancelreplacerequest/MultilegOrderCancelReplaceRequest.go b/fix43/multilegordercancelreplacerequest/MultilegOrderCancelReplaceRequest.go index d0e4e8927..10c39af9e 100644 --- a/fix43/multilegordercancelreplacerequest/MultilegOrderCancelReplaceRequest.go +++ b/fix43/multilegordercancelreplacerequest/MultilegOrderCancelReplaceRequest.go @@ -199,7 +199,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/newordercross/NewOrderCross.go b/fix43/newordercross/NewOrderCross.go index 80708c54f..689e219b3 100644 --- a/fix43/newordercross/NewOrderCross.go +++ b/fix43/newordercross/NewOrderCross.go @@ -199,7 +199,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/neworderlist/NewOrderList.go b/fix43/neworderlist/NewOrderList.go index 3cbc5084a..2eb51dffe 100644 --- a/fix43/neworderlist/NewOrderList.go +++ b/fix43/neworderlist/NewOrderList.go @@ -227,7 +227,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/newordermultileg/NewOrderMultileg.go b/fix43/newordermultileg/NewOrderMultileg.go index f3c8a7c3b..a2c381672 100644 --- a/fix43/newordermultileg/NewOrderMultileg.go +++ b/fix43/newordermultileg/NewOrderMultileg.go @@ -193,7 +193,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/newordersingle/NewOrderSingle.go b/fix43/newordersingle/NewOrderSingle.go index a5977ca43..cf087e7c8 100644 --- a/fix43/newordersingle/NewOrderSingle.go +++ b/fix43/newordersingle/NewOrderSingle.go @@ -193,7 +193,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/news/News.go b/fix43/news/News.go index a8cce02b9..784c14f72 100644 --- a/fix43/news/News.go +++ b/fix43/news/News.go @@ -68,7 +68,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/ordercancelreject/OrderCancelReject.go b/fix43/ordercancelreject/OrderCancelReject.go index 387461878..6f5878a2e 100644 --- a/fix43/ordercancelreject/OrderCancelReject.go +++ b/fix43/ordercancelreject/OrderCancelReject.go @@ -59,7 +59,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/ordercancelreplacerequest/OrderCancelReplaceRequest.go b/fix43/ordercancelreplacerequest/OrderCancelReplaceRequest.go index 302127505..6ec754f2a 100644 --- a/fix43/ordercancelreplacerequest/OrderCancelReplaceRequest.go +++ b/fix43/ordercancelreplacerequest/OrderCancelReplaceRequest.go @@ -190,7 +190,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/ordercancelrequest/OrderCancelRequest.go b/fix43/ordercancelrequest/OrderCancelRequest.go index aea1ff3ef..f2730cdc0 100644 --- a/fix43/ordercancelrequest/OrderCancelRequest.go +++ b/fix43/ordercancelrequest/OrderCancelRequest.go @@ -60,7 +60,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/ordermasscancelreport/OrderMassCancelReport.go b/fix43/ordermasscancelreport/OrderMassCancelReport.go index 8ffecfff9..23616b23b 100644 --- a/fix43/ordermasscancelreport/OrderMassCancelReport.go +++ b/fix43/ordermasscancelreport/OrderMassCancelReport.go @@ -69,7 +69,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/ordermasscancelrequest/OrderMassCancelRequest.go b/fix43/ordermasscancelrequest/OrderMassCancelRequest.go index 7c96d3d96..a2136d515 100644 --- a/fix43/ordermasscancelrequest/OrderMassCancelRequest.go +++ b/fix43/ordermasscancelrequest/OrderMassCancelRequest.go @@ -47,7 +47,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/ordermassstatusrequest/OrderMassStatusRequest.go b/fix43/ordermassstatusrequest/OrderMassStatusRequest.go index 3ae8d288a..19f8f4652 100644 --- a/fix43/ordermassstatusrequest/OrderMassStatusRequest.go +++ b/fix43/ordermassstatusrequest/OrderMassStatusRequest.go @@ -41,7 +41,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/orderstatusrequest/OrderStatusRequest.go b/fix43/orderstatusrequest/OrderStatusRequest.go index 418879055..dcbfebc11 100644 --- a/fix43/orderstatusrequest/OrderStatusRequest.go +++ b/fix43/orderstatusrequest/OrderStatusRequest.go @@ -38,7 +38,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/quote/Quote.go b/fix43/quote/Quote.go index 4f9f58e35..ee4bb292f 100644 --- a/fix43/quote/Quote.go +++ b/fix43/quote/Quote.go @@ -115,7 +115,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/quotecancel/QuoteCancel.go b/fix43/quotecancel/QuoteCancel.go index aac6dc642..f597f5298 100644 --- a/fix43/quotecancel/QuoteCancel.go +++ b/fix43/quotecancel/QuoteCancel.go @@ -48,7 +48,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/quoterequest/QuoteRequest.go b/fix43/quoterequest/QuoteRequest.go index b8b98933b..766da2620 100644 --- a/fix43/quoterequest/QuoteRequest.go +++ b/fix43/quoterequest/QuoteRequest.go @@ -91,7 +91,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/quoterequestreject/QuoteRequestReject.go b/fix43/quoterequestreject/QuoteRequestReject.go index 37f7d1dde..74ff12b5d 100644 --- a/fix43/quoterequestreject/QuoteRequestReject.go +++ b/fix43/quoterequestreject/QuoteRequestReject.go @@ -93,7 +93,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/quotestatusreport/QuoteStatusReport.go b/fix43/quotestatusreport/QuoteStatusReport.go index 43cf236d3..0c1ae2afe 100644 --- a/fix43/quotestatusreport/QuoteStatusReport.go +++ b/fix43/quotestatusreport/QuoteStatusReport.go @@ -109,7 +109,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/quotestatusrequest/QuoteStatusRequest.go b/fix43/quotestatusrequest/QuoteStatusRequest.go index cc04b8532..d37c04486 100644 --- a/fix43/quotestatusrequest/QuoteStatusRequest.go +++ b/fix43/quotestatusrequest/QuoteStatusRequest.go @@ -40,7 +40,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/registrationinstructions/RegistrationInstructions.go b/fix43/registrationinstructions/RegistrationInstructions.go index 62ba900ae..296bd6c4d 100644 --- a/fix43/registrationinstructions/RegistrationInstructions.go +++ b/fix43/registrationinstructions/RegistrationInstructions.go @@ -82,7 +82,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/registrationinstructionsresponse/RegistrationInstructionsResponse.go b/fix43/registrationinstructionsresponse/RegistrationInstructionsResponse.go index 737852879..a5a88dacb 100644 --- a/fix43/registrationinstructionsresponse/RegistrationInstructionsResponse.go +++ b/fix43/registrationinstructionsresponse/RegistrationInstructionsResponse.go @@ -39,7 +39,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/reject/Reject.go b/fix43/reject/Reject.go index 016f7dd6f..ea470c5a2 100644 --- a/fix43/reject/Reject.go +++ b/fix43/reject/Reject.go @@ -34,7 +34,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/resendrequest/ResendRequest.go b/fix43/resendrequest/ResendRequest.go index 564c7715e..d7f80ce57 100644 --- a/fix43/resendrequest/ResendRequest.go +++ b/fix43/resendrequest/ResendRequest.go @@ -24,7 +24,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/rfqrequest/RFQRequest.go b/fix43/rfqrequest/RFQRequest.go index a13707323..250a8e669 100644 --- a/fix43/rfqrequest/RFQRequest.go +++ b/fix43/rfqrequest/RFQRequest.go @@ -43,7 +43,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/securitydefinition/SecurityDefinition.go b/fix43/securitydefinition/SecurityDefinition.go index dfa9aa746..127f0a518 100644 --- a/fix43/securitydefinition/SecurityDefinition.go +++ b/fix43/securitydefinition/SecurityDefinition.go @@ -56,7 +56,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/securitydefinitionrequest/SecurityDefinitionRequest.go b/fix43/securitydefinitionrequest/SecurityDefinitionRequest.go index f616f2581..1ac54a8ad 100644 --- a/fix43/securitydefinitionrequest/SecurityDefinitionRequest.go +++ b/fix43/securitydefinitionrequest/SecurityDefinitionRequest.go @@ -52,7 +52,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/securitylist/SecurityList.go b/fix43/securitylist/SecurityList.go index 1c9eeef01..3a329859c 100644 --- a/fix43/securitylist/SecurityList.go +++ b/fix43/securitylist/SecurityList.go @@ -64,7 +64,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/securitylistrequest/SecurityListRequest.go b/fix43/securitylistrequest/SecurityListRequest.go index db2dd13a7..aa362c048 100644 --- a/fix43/securitylistrequest/SecurityListRequest.go +++ b/fix43/securitylistrequest/SecurityListRequest.go @@ -41,7 +41,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/securitystatus/SecurityStatus.go b/fix43/securitystatus/SecurityStatus.go index b792fd2b5..99f00172f 100644 --- a/fix43/securitystatus/SecurityStatus.go +++ b/fix43/securitystatus/SecurityStatus.go @@ -66,7 +66,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/securitystatusrequest/SecurityStatusRequest.go b/fix43/securitystatusrequest/SecurityStatusRequest.go index a3810eb3d..6967eb152 100644 --- a/fix43/securitystatusrequest/SecurityStatusRequest.go +++ b/fix43/securitystatusrequest/SecurityStatusRequest.go @@ -33,7 +33,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/securitytyperequest/SecurityTypeRequest.go b/fix43/securitytyperequest/SecurityTypeRequest.go index 4291b92e4..15b8b1989 100644 --- a/fix43/securitytyperequest/SecurityTypeRequest.go +++ b/fix43/securitytyperequest/SecurityTypeRequest.go @@ -32,7 +32,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/securitytypes/SecurityTypes.go b/fix43/securitytypes/SecurityTypes.go index c8bbda202..f73ffdf25 100644 --- a/fix43/securitytypes/SecurityTypes.go +++ b/fix43/securitytypes/SecurityTypes.go @@ -52,7 +52,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/sequencereset/SequenceReset.go b/fix43/sequencereset/SequenceReset.go index 008ae7eef..05be100dd 100644 --- a/fix43/sequencereset/SequenceReset.go +++ b/fix43/sequencereset/SequenceReset.go @@ -24,7 +24,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/settlementinstructions/SettlementInstructions.go b/fix43/settlementinstructions/SettlementInstructions.go index 9948d24b0..d56b63fbe 100644 --- a/fix43/settlementinstructions/SettlementInstructions.go +++ b/fix43/settlementinstructions/SettlementInstructions.go @@ -114,7 +114,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/testrequest/TestRequest.go b/fix43/testrequest/TestRequest.go index e0179acc8..2fbb1e140 100644 --- a/fix43/testrequest/TestRequest.go +++ b/fix43/testrequest/TestRequest.go @@ -22,7 +22,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/tradecapturereport/TradeCaptureReport.go b/fix43/tradecapturereport/TradeCaptureReport.go index e454bafb7..b4a08c5d9 100644 --- a/fix43/tradecapturereport/TradeCaptureReport.go +++ b/fix43/tradecapturereport/TradeCaptureReport.go @@ -185,7 +185,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/tradecapturereportrequest/TradeCaptureReportRequest.go b/fix43/tradecapturereportrequest/TradeCaptureReportRequest.go index a706c8d54..4ad7488bf 100644 --- a/fix43/tradecapturereportrequest/TradeCaptureReportRequest.go +++ b/fix43/tradecapturereportrequest/TradeCaptureReportRequest.go @@ -63,7 +63,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/tradingsessionstatus/TradingSessionStatus.go b/fix43/tradingsessionstatus/TradingSessionStatus.go index bcc7bf86b..1188f76ae 100644 --- a/fix43/tradingsessionstatus/TradingSessionStatus.go +++ b/fix43/tradingsessionstatus/TradingSessionStatus.go @@ -55,7 +55,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix43/tradingsessionstatusrequest/TradingSessionStatusRequest.go b/fix43/tradingsessionstatusrequest/TradingSessionStatusRequest.go index 9ec150ed3..042fe598d 100644 --- a/fix43/tradingsessionstatusrequest/TradingSessionStatusRequest.go +++ b/fix43/tradingsessionstatusrequest/TradingSessionStatusRequest.go @@ -32,7 +32,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/advertisement/Advertisement.go b/fix44/advertisement/Advertisement.go index 70ed966f2..7b2c6d501 100644 --- a/fix44/advertisement/Advertisement.go +++ b/fix44/advertisement/Advertisement.go @@ -76,7 +76,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/allocationinstruction/AllocationInstruction.go b/fix44/allocationinstruction/AllocationInstruction.go index 362dfc46e..4f4f8ec53 100644 --- a/fix44/allocationinstruction/AllocationInstruction.go +++ b/fix44/allocationinstruction/AllocationInstruction.go @@ -290,7 +290,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/allocationinstructionack/AllocationInstructionAck.go b/fix44/allocationinstructionack/AllocationInstructionAck.go index 224930bec..4e9e177bc 100644 --- a/fix44/allocationinstructionack/AllocationInstructionAck.go +++ b/fix44/allocationinstructionack/AllocationInstructionAck.go @@ -74,7 +74,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/allocationreport/AllocationReport.go b/fix44/allocationreport/AllocationReport.go index 4ed541bbe..80eb56397 100644 --- a/fix44/allocationreport/AllocationReport.go +++ b/fix44/allocationreport/AllocationReport.go @@ -298,7 +298,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/allocationreportack/AllocationReportAck.go b/fix44/allocationreportack/AllocationReportAck.go index 3d50aa623..b4cad4821 100644 --- a/fix44/allocationreportack/AllocationReportAck.go +++ b/fix44/allocationreportack/AllocationReportAck.go @@ -76,7 +76,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/assignmentreport/AssignmentReport.go b/fix44/assignmentreport/AssignmentReport.go index be017a510..0c70dad7f 100644 --- a/fix44/assignmentreport/AssignmentReport.go +++ b/fix44/assignmentreport/AssignmentReport.go @@ -92,7 +92,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/bidrequest/BidRequest.go b/fix44/bidrequest/BidRequest.go index 3b8a18030..7958420c4 100644 --- a/fix44/bidrequest/BidRequest.go +++ b/fix44/bidrequest/BidRequest.go @@ -127,7 +127,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/bidresponse/BidResponse.go b/fix44/bidresponse/BidResponse.go index 4b262b0f8..9c263bcbe 100644 --- a/fix44/bidresponse/BidResponse.go +++ b/fix44/bidresponse/BidResponse.go @@ -61,7 +61,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/businessmessagereject/BusinessMessageReject.go b/fix44/businessmessagereject/BusinessMessageReject.go index a9be0d395..c3b854d1f 100644 --- a/fix44/businessmessagereject/BusinessMessageReject.go +++ b/fix44/businessmessagereject/BusinessMessageReject.go @@ -34,7 +34,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/collateralassignment/CollateralAssignment.go b/fix44/collateralassignment/CollateralAssignment.go index 64e524429..57a53126b 100644 --- a/fix44/collateralassignment/CollateralAssignment.go +++ b/fix44/collateralassignment/CollateralAssignment.go @@ -164,7 +164,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/collateralinquiry/CollateralInquiry.go b/fix44/collateralinquiry/CollateralInquiry.go index b87c9a41c..d207fa037 100644 --- a/fix44/collateralinquiry/CollateralInquiry.go +++ b/fix44/collateralinquiry/CollateralInquiry.go @@ -149,7 +149,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/collateralinquiryack/CollateralInquiryAck.go b/fix44/collateralinquiryack/CollateralInquiryAck.go index 5f82aef16..9e41a7529 100644 --- a/fix44/collateralinquiryack/CollateralInquiryAck.go +++ b/fix44/collateralinquiryack/CollateralInquiryAck.go @@ -121,7 +121,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/collateralreport/CollateralReport.go b/fix44/collateralreport/CollateralReport.go index c5ff30526..778453411 100644 --- a/fix44/collateralreport/CollateralReport.go +++ b/fix44/collateralreport/CollateralReport.go @@ -157,7 +157,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/collateralrequest/CollateralRequest.go b/fix44/collateralrequest/CollateralRequest.go index 3711dbb8d..ac927ef8b 100644 --- a/fix44/collateralrequest/CollateralRequest.go +++ b/fix44/collateralrequest/CollateralRequest.go @@ -155,7 +155,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/collateralresponse/CollateralResponse.go b/fix44/collateralresponse/CollateralResponse.go index 8499b0232..8816c7287 100644 --- a/fix44/collateralresponse/CollateralResponse.go +++ b/fix44/collateralresponse/CollateralResponse.go @@ -153,7 +153,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/confirmation/Confirmation.go b/fix44/confirmation/Confirmation.go index 92702b6ba..4b1f9bbf5 100644 --- a/fix44/confirmation/Confirmation.go +++ b/fix44/confirmation/Confirmation.go @@ -220,7 +220,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/confirmationack/ConfirmationAck.go b/fix44/confirmationack/ConfirmationAck.go index 99f77aa2c..85e26c904 100644 --- a/fix44/confirmationack/ConfirmationAck.go +++ b/fix44/confirmationack/ConfirmationAck.go @@ -39,7 +39,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/confirmationrequest/ConfirmationRequest.go b/fix44/confirmationrequest/ConfirmationRequest.go index b8719657a..46f968707 100644 --- a/fix44/confirmationrequest/ConfirmationRequest.go +++ b/fix44/confirmationrequest/ConfirmationRequest.go @@ -70,7 +70,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/crossordercancelreplacerequest/CrossOrderCancelReplaceRequest.go b/fix44/crossordercancelreplacerequest/CrossOrderCancelReplaceRequest.go index 9c1d3ee73..e0284380f 100644 --- a/fix44/crossordercancelreplacerequest/CrossOrderCancelReplaceRequest.go +++ b/fix44/crossordercancelreplacerequest/CrossOrderCancelReplaceRequest.go @@ -237,7 +237,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/crossordercancelrequest/CrossOrderCancelRequest.go b/fix44/crossordercancelrequest/CrossOrderCancelRequest.go index 2ed897487..04a7e61d5 100644 --- a/fix44/crossordercancelrequest/CrossOrderCancelRequest.go +++ b/fix44/crossordercancelrequest/CrossOrderCancelRequest.go @@ -90,7 +90,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/derivativesecuritylist/DerivativeSecurityList.go b/fix44/derivativesecuritylist/DerivativeSecurityList.go index a3386b777..3e01aa2f5 100644 --- a/fix44/derivativesecuritylist/DerivativeSecurityList.go +++ b/fix44/derivativesecuritylist/DerivativeSecurityList.go @@ -68,7 +68,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/derivativesecuritylistrequest/DerivativeSecurityListRequest.go b/fix44/derivativesecuritylistrequest/DerivativeSecurityListRequest.go index 4d311c2a2..e1bf6a73a 100644 --- a/fix44/derivativesecuritylistrequest/DerivativeSecurityListRequest.go +++ b/fix44/derivativesecuritylistrequest/DerivativeSecurityListRequest.go @@ -43,7 +43,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/dontknowtrade/DontKnowTrade.go b/fix44/dontknowtrade/DontKnowTrade.go index 48917292e..aad21b55f 100644 --- a/fix44/dontknowtrade/DontKnowTrade.go +++ b/fix44/dontknowtrade/DontKnowTrade.go @@ -64,7 +64,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/email/Email.go b/fix44/email/Email.go index 7753be1ac..36c5d72ba 100644 --- a/fix44/email/Email.go +++ b/fix44/email/Email.go @@ -90,7 +90,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/executionreport/ExecutionReport.go b/fix44/executionreport/ExecutionReport.go index edfc4e3dd..2c0a34b81 100644 --- a/fix44/executionreport/ExecutionReport.go +++ b/fix44/executionreport/ExecutionReport.go @@ -381,7 +381,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/heartbeat/Heartbeat.go b/fix44/heartbeat/Heartbeat.go index 9a4272536..cfbc9b779 100644 --- a/fix44/heartbeat/Heartbeat.go +++ b/fix44/heartbeat/Heartbeat.go @@ -22,7 +22,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/ioi/IOI.go b/fix44/ioi/IOI.go index 1ddf4a39f..2ac01eb17 100644 --- a/fix44/ioi/IOI.go +++ b/fix44/ioi/IOI.go @@ -114,7 +114,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/listcancelrequest/ListCancelRequest.go b/fix44/listcancelrequest/ListCancelRequest.go index 175b7d85a..e4eaba19a 100644 --- a/fix44/listcancelrequest/ListCancelRequest.go +++ b/fix44/listcancelrequest/ListCancelRequest.go @@ -35,7 +35,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/listexecute/ListExecute.go b/fix44/listexecute/ListExecute.go index b272e8e1b..6d2e17877 100644 --- a/fix44/listexecute/ListExecute.go +++ b/fix44/listexecute/ListExecute.go @@ -35,7 +35,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/liststatus/ListStatus.go b/fix44/liststatus/ListStatus.go index c406bbac7..5277f378c 100644 --- a/fix44/liststatus/ListStatus.go +++ b/fix44/liststatus/ListStatus.go @@ -73,7 +73,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/liststatusrequest/ListStatusRequest.go b/fix44/liststatusrequest/ListStatusRequest.go index 04104a053..44983c800 100644 --- a/fix44/liststatusrequest/ListStatusRequest.go +++ b/fix44/liststatusrequest/ListStatusRequest.go @@ -28,7 +28,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/liststrikeprice/ListStrikePrice.go b/fix44/liststrikeprice/ListStrikePrice.go index 3b01ab5ab..750e303c3 100644 --- a/fix44/liststrikeprice/ListStrikePrice.go +++ b/fix44/liststrikeprice/ListStrikePrice.go @@ -62,7 +62,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/logon/Logon.go b/fix44/logon/Logon.go index b6f75dca6..8b677b525 100644 --- a/fix44/logon/Logon.go +++ b/fix44/logon/Logon.go @@ -50,7 +50,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/logout/Logout.go b/fix44/logout/Logout.go index 271831524..1f12cc793 100644 --- a/fix44/logout/Logout.go +++ b/fix44/logout/Logout.go @@ -26,7 +26,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go b/fix44/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go index 4d225a806..221e7c655 100644 --- a/fix44/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go +++ b/fix44/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go @@ -134,7 +134,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/marketdatarequest/MarketDataRequest.go b/fix44/marketdatarequest/MarketDataRequest.go index c5f04dd16..5580ff239 100644 --- a/fix44/marketdatarequest/MarketDataRequest.go +++ b/fix44/marketdatarequest/MarketDataRequest.go @@ -85,7 +85,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/marketdatarequestreject/MarketDataRequestReject.go b/fix44/marketdatarequestreject/MarketDataRequestReject.go index ceb0e4528..4e224732c 100644 --- a/fix44/marketdatarequestreject/MarketDataRequestReject.go +++ b/fix44/marketdatarequestreject/MarketDataRequestReject.go @@ -38,7 +38,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go b/fix44/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go index debcd41b4..d0c724f29 100644 --- a/fix44/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go +++ b/fix44/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go @@ -126,7 +126,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/massquote/MassQuote.go b/fix44/massquote/MassQuote.go index 0347743fa..821584446 100644 --- a/fix44/massquote/MassQuote.go +++ b/fix44/massquote/MassQuote.go @@ -125,7 +125,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/massquoteacknowledgement/MassQuoteAcknowledgement.go b/fix44/massquoteacknowledgement/MassQuoteAcknowledgement.go index 9671b86cf..0e54a2d15 100644 --- a/fix44/massquoteacknowledgement/MassQuoteAcknowledgement.go +++ b/fix44/massquoteacknowledgement/MassQuoteAcknowledgement.go @@ -131,7 +131,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/multilegordercancelreplace/MultilegOrderCancelReplace.go b/fix44/multilegordercancelreplace/MultilegOrderCancelReplace.go index e1b2998f5..5d7b9a96e 100644 --- a/fix44/multilegordercancelreplace/MultilegOrderCancelReplace.go +++ b/fix44/multilegordercancelreplace/MultilegOrderCancelReplace.go @@ -255,7 +255,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/networkcounterpartysystemstatusrequest/NetworkCounterpartySystemStatusRequest.go b/fix44/networkcounterpartysystemstatusrequest/NetworkCounterpartySystemStatusRequest.go index f307559f8..a6963e0f1 100644 --- a/fix44/networkcounterpartysystemstatusrequest/NetworkCounterpartySystemStatusRequest.go +++ b/fix44/networkcounterpartysystemstatusrequest/NetworkCounterpartySystemStatusRequest.go @@ -38,7 +38,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/networkcounterpartysystemstatusresponse/NetworkCounterpartySystemStatusResponse.go b/fix44/networkcounterpartysystemstatusresponse/NetworkCounterpartySystemStatusResponse.go index 4dea47bc1..a1584ec28 100644 --- a/fix44/networkcounterpartysystemstatusresponse/NetworkCounterpartySystemStatusResponse.go +++ b/fix44/networkcounterpartysystemstatusresponse/NetworkCounterpartySystemStatusResponse.go @@ -46,7 +46,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/newordercross/NewOrderCross.go b/fix44/newordercross/NewOrderCross.go index cb3757151..173812f20 100644 --- a/fix44/newordercross/NewOrderCross.go +++ b/fix44/newordercross/NewOrderCross.go @@ -229,7 +229,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/neworderlist/NewOrderList.go b/fix44/neworderlist/NewOrderList.go index ea59565a3..f320e80a7 100644 --- a/fix44/neworderlist/NewOrderList.go +++ b/fix44/neworderlist/NewOrderList.go @@ -254,7 +254,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/newordermultileg/NewOrderMultileg.go b/fix44/newordermultileg/NewOrderMultileg.go index 0171f1f36..fe36fc8ab 100644 --- a/fix44/newordermultileg/NewOrderMultileg.go +++ b/fix44/newordermultileg/NewOrderMultileg.go @@ -249,7 +249,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/newordersingle/NewOrderSingle.go b/fix44/newordersingle/NewOrderSingle.go index 00655c252..18c8a81f9 100644 --- a/fix44/newordersingle/NewOrderSingle.go +++ b/fix44/newordersingle/NewOrderSingle.go @@ -215,7 +215,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/news/News.go b/fix44/news/News.go index d321e932d..a861a7ca4 100644 --- a/fix44/news/News.go +++ b/fix44/news/News.go @@ -86,7 +86,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/ordercancelreject/OrderCancelReject.go b/fix44/ordercancelreject/OrderCancelReject.go index a634616ed..f579b0d88 100644 --- a/fix44/ordercancelreject/OrderCancelReject.go +++ b/fix44/ordercancelreject/OrderCancelReject.go @@ -63,7 +63,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/ordercancelreplacerequest/OrderCancelReplaceRequest.go b/fix44/ordercancelreplacerequest/OrderCancelReplaceRequest.go index a41e5b9a3..e7fbd1060 100644 --- a/fix44/ordercancelreplacerequest/OrderCancelReplaceRequest.go +++ b/fix44/ordercancelreplacerequest/OrderCancelReplaceRequest.go @@ -212,7 +212,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/ordercancelrequest/OrderCancelRequest.go b/fix44/ordercancelrequest/OrderCancelRequest.go index f23127041..69ea6d4fa 100644 --- a/fix44/ordercancelrequest/OrderCancelRequest.go +++ b/fix44/ordercancelrequest/OrderCancelRequest.go @@ -74,7 +74,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/ordermasscancelreport/OrderMassCancelReport.go b/fix44/ordermasscancelreport/OrderMassCancelReport.go index 4f7f3a0bb..47deda3bf 100644 --- a/fix44/ordermasscancelreport/OrderMassCancelReport.go +++ b/fix44/ordermasscancelreport/OrderMassCancelReport.go @@ -69,7 +69,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/ordermasscancelrequest/OrderMassCancelRequest.go b/fix44/ordermasscancelrequest/OrderMassCancelRequest.go index 283654456..09dedd0f2 100644 --- a/fix44/ordermasscancelrequest/OrderMassCancelRequest.go +++ b/fix44/ordermasscancelrequest/OrderMassCancelRequest.go @@ -47,7 +47,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/ordermassstatusrequest/OrderMassStatusRequest.go b/fix44/ordermassstatusrequest/OrderMassStatusRequest.go index 76a95da13..81eb016ce 100644 --- a/fix44/ordermassstatusrequest/OrderMassStatusRequest.go +++ b/fix44/ordermassstatusrequest/OrderMassStatusRequest.go @@ -43,7 +43,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/orderstatusrequest/OrderStatusRequest.go b/fix44/orderstatusrequest/OrderStatusRequest.go index 2e9a35e8c..2c6383af5 100644 --- a/fix44/orderstatusrequest/OrderStatusRequest.go +++ b/fix44/orderstatusrequest/OrderStatusRequest.go @@ -54,7 +54,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/positionmaintenancereport/PositionMaintenanceReport.go b/fix44/positionmaintenancereport/PositionMaintenanceReport.go index b895e71c9..ec2a66976 100644 --- a/fix44/positionmaintenancereport/PositionMaintenanceReport.go +++ b/fix44/positionmaintenancereport/PositionMaintenanceReport.go @@ -101,7 +101,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/positionmaintenancerequest/PositionMaintenanceRequest.go b/fix44/positionmaintenancerequest/PositionMaintenanceRequest.go index 6513a869e..7ba207277 100644 --- a/fix44/positionmaintenancerequest/PositionMaintenanceRequest.go +++ b/fix44/positionmaintenancerequest/PositionMaintenanceRequest.go @@ -98,7 +98,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/positionreport/PositionReport.go b/fix44/positionreport/PositionReport.go index 937106260..7f510bbd4 100644 --- a/fix44/positionreport/PositionReport.go +++ b/fix44/positionreport/PositionReport.go @@ -98,7 +98,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/quote/Quote.go b/fix44/quote/Quote.go index 0d4d32e17..489d717fb 100644 --- a/fix44/quote/Quote.go +++ b/fix44/quote/Quote.go @@ -189,7 +189,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/quotecancel/QuoteCancel.go b/fix44/quotecancel/QuoteCancel.go index b6df0c7df..e6a3497d1 100644 --- a/fix44/quotecancel/QuoteCancel.go +++ b/fix44/quotecancel/QuoteCancel.go @@ -71,7 +71,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/quoterequest/QuoteRequest.go b/fix44/quoterequest/QuoteRequest.go index a21257656..355d084d1 100644 --- a/fix44/quoterequest/QuoteRequest.go +++ b/fix44/quoterequest/QuoteRequest.go @@ -153,7 +153,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/quoterequestreject/QuoteRequestReject.go b/fix44/quoterequestreject/QuoteRequestReject.go index 85b189d30..8e9d9a633 100644 --- a/fix44/quoterequestreject/QuoteRequestReject.go +++ b/fix44/quoterequestreject/QuoteRequestReject.go @@ -149,7 +149,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/quoteresponse/QuoteResponse.go b/fix44/quoteresponse/QuoteResponse.go index 93783b1fd..c54bcd71d 100644 --- a/fix44/quoteresponse/QuoteResponse.go +++ b/fix44/quoteresponse/QuoteResponse.go @@ -193,7 +193,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/quotestatusreport/QuoteStatusReport.go b/fix44/quotestatusreport/QuoteStatusReport.go index 35fa4833c..a09e094eb 100644 --- a/fix44/quotestatusreport/QuoteStatusReport.go +++ b/fix44/quotestatusreport/QuoteStatusReport.go @@ -184,7 +184,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/quotestatusrequest/QuoteStatusRequest.go b/fix44/quotestatusrequest/QuoteStatusRequest.go index 4193abb93..3258f35f2 100644 --- a/fix44/quotestatusrequest/QuoteStatusRequest.go +++ b/fix44/quotestatusrequest/QuoteStatusRequest.go @@ -63,7 +63,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/registrationinstructions/RegistrationInstructions.go b/fix44/registrationinstructions/RegistrationInstructions.go index 40a7c3107..ef73683ba 100644 --- a/fix44/registrationinstructions/RegistrationInstructions.go +++ b/fix44/registrationinstructions/RegistrationInstructions.go @@ -86,7 +86,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/registrationinstructionsresponse/RegistrationInstructionsResponse.go b/fix44/registrationinstructionsresponse/RegistrationInstructionsResponse.go index 75076a1d8..e9ab2f0a8 100644 --- a/fix44/registrationinstructionsresponse/RegistrationInstructionsResponse.go +++ b/fix44/registrationinstructionsresponse/RegistrationInstructionsResponse.go @@ -41,7 +41,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/reject/Reject.go b/fix44/reject/Reject.go index f0ff0c597..76feaad2d 100644 --- a/fix44/reject/Reject.go +++ b/fix44/reject/Reject.go @@ -34,7 +34,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/requestforpositions/RequestForPositions.go b/fix44/requestforpositions/RequestForPositions.go index 4c7b0117f..ea6a32479 100644 --- a/fix44/requestforpositions/RequestForPositions.go +++ b/fix44/requestforpositions/RequestForPositions.go @@ -89,7 +89,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/requestforpositionsack/RequestForPositionsAck.go b/fix44/requestforpositionsack/RequestForPositionsAck.go index afb6d5660..035dc3e03 100644 --- a/fix44/requestforpositionsack/RequestForPositionsAck.go +++ b/fix44/requestforpositionsack/RequestForPositionsAck.go @@ -74,7 +74,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/resendrequest/ResendRequest.go b/fix44/resendrequest/ResendRequest.go index cd3cb6b6e..1ff22dbb2 100644 --- a/fix44/resendrequest/ResendRequest.go +++ b/fix44/resendrequest/ResendRequest.go @@ -24,7 +24,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/rfqrequest/RFQRequest.go b/fix44/rfqrequest/RFQRequest.go index b7d9e1abb..233d6b293 100644 --- a/fix44/rfqrequest/RFQRequest.go +++ b/fix44/rfqrequest/RFQRequest.go @@ -61,7 +61,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/securitydefinition/SecurityDefinition.go b/fix44/securitydefinition/SecurityDefinition.go index 93a2d8270..50ef17605 100644 --- a/fix44/securitydefinition/SecurityDefinition.go +++ b/fix44/securitydefinition/SecurityDefinition.go @@ -68,7 +68,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/securitydefinitionrequest/SecurityDefinitionRequest.go b/fix44/securitydefinitionrequest/SecurityDefinitionRequest.go index 762d04658..1875a6073 100644 --- a/fix44/securitydefinitionrequest/SecurityDefinitionRequest.go +++ b/fix44/securitydefinitionrequest/SecurityDefinitionRequest.go @@ -64,7 +64,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/securitylist/SecurityList.go b/fix44/securitylist/SecurityList.go index 22e711b2f..dd6ead844 100644 --- a/fix44/securitylist/SecurityList.go +++ b/fix44/securitylist/SecurityList.go @@ -100,7 +100,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/securitylistrequest/SecurityListRequest.go b/fix44/securitylistrequest/SecurityListRequest.go index 7c0956106..66a511260 100644 --- a/fix44/securitylistrequest/SecurityListRequest.go +++ b/fix44/securitylistrequest/SecurityListRequest.go @@ -65,7 +65,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/securitystatus/SecurityStatus.go b/fix44/securitystatus/SecurityStatus.go index 977afac90..e128d7124 100644 --- a/fix44/securitystatus/SecurityStatus.go +++ b/fix44/securitystatus/SecurityStatus.go @@ -87,7 +87,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/securitystatusrequest/SecurityStatusRequest.go b/fix44/securitystatusrequest/SecurityStatusRequest.go index ab122a733..acc1a8059 100644 --- a/fix44/securitystatusrequest/SecurityStatusRequest.go +++ b/fix44/securitystatusrequest/SecurityStatusRequest.go @@ -54,7 +54,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/securitytyperequest/SecurityTypeRequest.go b/fix44/securitytyperequest/SecurityTypeRequest.go index d0ac851ed..d7c57a194 100644 --- a/fix44/securitytyperequest/SecurityTypeRequest.go +++ b/fix44/securitytyperequest/SecurityTypeRequest.go @@ -38,7 +38,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/securitytypes/SecurityTypes.go b/fix44/securitytypes/SecurityTypes.go index 60f540abd..d1daa0f2b 100644 --- a/fix44/securitytypes/SecurityTypes.go +++ b/fix44/securitytypes/SecurityTypes.go @@ -56,7 +56,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/sequencereset/SequenceReset.go b/fix44/sequencereset/SequenceReset.go index 748f229d5..1409350f0 100644 --- a/fix44/sequencereset/SequenceReset.go +++ b/fix44/sequencereset/SequenceReset.go @@ -24,7 +24,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/settlementinstructionrequest/SettlementInstructionRequest.go b/fix44/settlementinstructionrequest/SettlementInstructionRequest.go index 2861d1066..30555d5c7 100644 --- a/fix44/settlementinstructionrequest/SettlementInstructionRequest.go +++ b/fix44/settlementinstructionrequest/SettlementInstructionRequest.go @@ -52,7 +52,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/settlementinstructions/SettlementInstructions.go b/fix44/settlementinstructions/SettlementInstructions.go index 9b94b3ba3..1d8b23d0a 100644 --- a/fix44/settlementinstructions/SettlementInstructions.go +++ b/fix44/settlementinstructions/SettlementInstructions.go @@ -89,7 +89,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/testrequest/TestRequest.go b/fix44/testrequest/TestRequest.go index fe2bcaa9b..eefc116fc 100644 --- a/fix44/testrequest/TestRequest.go +++ b/fix44/testrequest/TestRequest.go @@ -22,7 +22,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/tradecapturereport/TradeCaptureReport.go b/fix44/tradecapturereport/TradeCaptureReport.go index dd6cf42c2..f87539b88 100644 --- a/fix44/tradecapturereport/TradeCaptureReport.go +++ b/fix44/tradecapturereport/TradeCaptureReport.go @@ -350,7 +350,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/tradecapturereportack/TradeCaptureReportAck.go b/fix44/tradecapturereportack/TradeCaptureReportAck.go index 99a7a68df..c026051fc 100644 --- a/fix44/tradecapturereportack/TradeCaptureReportAck.go +++ b/fix44/tradecapturereportack/TradeCaptureReportAck.go @@ -145,7 +145,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/tradecapturereportrequest/TradeCaptureReportRequest.go b/fix44/tradecapturereportrequest/TradeCaptureReportRequest.go index 9d554f2b8..988b15fcd 100644 --- a/fix44/tradecapturereportrequest/TradeCaptureReportRequest.go +++ b/fix44/tradecapturereportrequest/TradeCaptureReportRequest.go @@ -119,7 +119,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/tradecapturereportrequestack/TradeCaptureReportRequestAck.go b/fix44/tradecapturereportrequestack/TradeCaptureReportRequestAck.go index f5f4d3a4d..c30f31c67 100644 --- a/fix44/tradecapturereportrequestack/TradeCaptureReportRequestAck.go +++ b/fix44/tradecapturereportrequestack/TradeCaptureReportRequestAck.go @@ -65,7 +65,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/tradingsessionstatus/TradingSessionStatus.go b/fix44/tradingsessionstatus/TradingSessionStatus.go index cc9a1a610..797c57b9e 100644 --- a/fix44/tradingsessionstatus/TradingSessionStatus.go +++ b/fix44/tradingsessionstatus/TradingSessionStatus.go @@ -55,7 +55,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/tradingsessionstatusrequest/TradingSessionStatusRequest.go b/fix44/tradingsessionstatusrequest/TradingSessionStatusRequest.go index 030382800..c6d462437 100644 --- a/fix44/tradingsessionstatusrequest/TradingSessionStatusRequest.go +++ b/fix44/tradingsessionstatusrequest/TradingSessionStatusRequest.go @@ -32,7 +32,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/userrequest/UserRequest.go b/fix44/userrequest/UserRequest.go index e21170d55..b63a03adb 100644 --- a/fix44/userrequest/UserRequest.go +++ b/fix44/userrequest/UserRequest.go @@ -34,7 +34,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix44/userresponse/UserResponse.go b/fix44/userresponse/UserResponse.go index a9f53beba..ba9f96ed5 100644 --- a/fix44/userresponse/UserResponse.go +++ b/fix44/userresponse/UserResponse.go @@ -28,7 +28,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/adjustedpositionreport/AdjustedPositionReport.go b/fix50/adjustedpositionreport/AdjustedPositionReport.go index 704f021e1..75033cf87 100644 --- a/fix50/adjustedpositionreport/AdjustedPositionReport.go +++ b/fix50/adjustedpositionreport/AdjustedPositionReport.go @@ -43,7 +43,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/advertisement/Advertisement.go b/fix50/advertisement/Advertisement.go index b46cc0e19..7555641dd 100644 --- a/fix50/advertisement/Advertisement.go +++ b/fix50/advertisement/Advertisement.go @@ -64,7 +64,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/allocationinstruction/AllocationInstruction.go b/fix50/allocationinstruction/AllocationInstruction.go index b013e072a..3f2b2a3d6 100644 --- a/fix50/allocationinstruction/AllocationInstruction.go +++ b/fix50/allocationinstruction/AllocationInstruction.go @@ -180,7 +180,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/allocationinstructionack/AllocationInstructionAck.go b/fix50/allocationinstructionack/AllocationInstructionAck.go index 7428a896a..b348884d6 100644 --- a/fix50/allocationinstructionack/AllocationInstructionAck.go +++ b/fix50/allocationinstructionack/AllocationInstructionAck.go @@ -55,7 +55,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/allocationinstructionalert/AllocationInstructionAlert.go b/fix50/allocationinstructionalert/AllocationInstructionAlert.go index 760b761be..c0fbb05bf 100644 --- a/fix50/allocationinstructionalert/AllocationInstructionAlert.go +++ b/fix50/allocationinstructionalert/AllocationInstructionAlert.go @@ -180,7 +180,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/allocationreport/AllocationReport.go b/fix50/allocationreport/AllocationReport.go index 38b564389..40fd70042 100644 --- a/fix50/allocationreport/AllocationReport.go +++ b/fix50/allocationreport/AllocationReport.go @@ -190,7 +190,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/allocationreportack/AllocationReportAck.go b/fix50/allocationreportack/AllocationReportAck.go index ed7d250a8..3fec859eb 100644 --- a/fix50/allocationreportack/AllocationReportAck.go +++ b/fix50/allocationreportack/AllocationReportAck.go @@ -65,7 +65,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/assignmentreport/AssignmentReport.go b/fix50/assignmentreport/AssignmentReport.go index 08913207f..9a04435a6 100644 --- a/fix50/assignmentreport/AssignmentReport.go +++ b/fix50/assignmentreport/AssignmentReport.go @@ -82,7 +82,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/bidrequest/BidRequest.go b/fix50/bidrequest/BidRequest.go index f7cc37d58..9fc5add54 100644 --- a/fix50/bidrequest/BidRequest.go +++ b/fix50/bidrequest/BidRequest.go @@ -81,7 +81,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/bidresponse/BidResponse.go b/fix50/bidresponse/BidResponse.go index 68282549f..6a21dc568 100644 --- a/fix50/bidresponse/BidResponse.go +++ b/fix50/bidresponse/BidResponse.go @@ -27,7 +27,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/businessmessagereject/BusinessMessageReject.go b/fix50/businessmessagereject/BusinessMessageReject.go index 674e5cb8e..2c67377a3 100644 --- a/fix50/businessmessagereject/BusinessMessageReject.go +++ b/fix50/businessmessagereject/BusinessMessageReject.go @@ -34,7 +34,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/collateralassignment/CollateralAssignment.go b/fix50/collateralassignment/CollateralAssignment.go index ad8822843..5f48f9f69 100644 --- a/fix50/collateralassignment/CollateralAssignment.go +++ b/fix50/collateralassignment/CollateralAssignment.go @@ -127,7 +127,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/collateralinquiry/CollateralInquiry.go b/fix50/collateralinquiry/CollateralInquiry.go index dc91bfe0e..8975e19fe 100644 --- a/fix50/collateralinquiry/CollateralInquiry.go +++ b/fix50/collateralinquiry/CollateralInquiry.go @@ -120,7 +120,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/collateralinquiryack/CollateralInquiryAck.go b/fix50/collateralinquiryack/CollateralInquiryAck.go index bc4406f8a..f2ee86f1a 100644 --- a/fix50/collateralinquiryack/CollateralInquiryAck.go +++ b/fix50/collateralinquiryack/CollateralInquiryAck.go @@ -92,7 +92,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/collateralreport/CollateralReport.go b/fix50/collateralreport/CollateralReport.go index b3702e2e1..c8dca71a8 100644 --- a/fix50/collateralreport/CollateralReport.go +++ b/fix50/collateralreport/CollateralReport.go @@ -129,7 +129,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/collateralrequest/CollateralRequest.go b/fix50/collateralrequest/CollateralRequest.go index 00a75d60c..0b2254414 100644 --- a/fix50/collateralrequest/CollateralRequest.go +++ b/fix50/collateralrequest/CollateralRequest.go @@ -118,7 +118,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/collateralresponse/CollateralResponse.go b/fix50/collateralresponse/CollateralResponse.go index f54766873..9e14906c4 100644 --- a/fix50/collateralresponse/CollateralResponse.go +++ b/fix50/collateralresponse/CollateralResponse.go @@ -122,7 +122,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/confirmation/Confirmation.go b/fix50/confirmation/Confirmation.go index 0b952c175..2068f0258 100644 --- a/fix50/confirmation/Confirmation.go +++ b/fix50/confirmation/Confirmation.go @@ -166,7 +166,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/confirmationack/ConfirmationAck.go b/fix50/confirmationack/ConfirmationAck.go index ca9c5e0e8..2e74ca158 100644 --- a/fix50/confirmationack/ConfirmationAck.go +++ b/fix50/confirmationack/ConfirmationAck.go @@ -39,7 +39,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/confirmationrequest/ConfirmationRequest.go b/fix50/confirmationrequest/ConfirmationRequest.go index 391d4dc54..3325947c9 100644 --- a/fix50/confirmationrequest/ConfirmationRequest.go +++ b/fix50/confirmationrequest/ConfirmationRequest.go @@ -48,7 +48,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/contraryintentionreport/ContraryIntentionReport.go b/fix50/contraryintentionreport/ContraryIntentionReport.go index f98a1e956..fc7c89b61 100644 --- a/fix50/contraryintentionreport/ContraryIntentionReport.go +++ b/fix50/contraryintentionreport/ContraryIntentionReport.go @@ -49,7 +49,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/crossordercancelreplacerequest/CrossOrderCancelReplaceRequest.go b/fix50/crossordercancelreplacerequest/CrossOrderCancelReplaceRequest.go index 10cb76324..636c73994 100644 --- a/fix50/crossordercancelreplacerequest/CrossOrderCancelReplaceRequest.go +++ b/fix50/crossordercancelreplacerequest/CrossOrderCancelReplaceRequest.go @@ -149,7 +149,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/crossordercancelrequest/CrossOrderCancelRequest.go b/fix50/crossordercancelrequest/CrossOrderCancelRequest.go index 49ef5752a..5a25bc17f 100644 --- a/fix50/crossordercancelrequest/CrossOrderCancelRequest.go +++ b/fix50/crossordercancelrequest/CrossOrderCancelRequest.go @@ -50,7 +50,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/derivativesecuritylist/DerivativeSecurityList.go b/fix50/derivativesecuritylist/DerivativeSecurityList.go index 6b35a6ed8..01a45cad5 100644 --- a/fix50/derivativesecuritylist/DerivativeSecurityList.go +++ b/fix50/derivativesecuritylist/DerivativeSecurityList.go @@ -36,7 +36,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/derivativesecuritylistrequest/DerivativeSecurityListRequest.go b/fix50/derivativesecuritylistrequest/DerivativeSecurityListRequest.go index 7674474f9..7e1a0e6b8 100644 --- a/fix50/derivativesecuritylistrequest/DerivativeSecurityListRequest.go +++ b/fix50/derivativesecuritylistrequest/DerivativeSecurityListRequest.go @@ -43,7 +43,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/dontknowtrade/DontKnowTrade.go b/fix50/dontknowtrade/DontKnowTrade.go index 6d2baefee..5fb1f3207 100644 --- a/fix50/dontknowtrade/DontKnowTrade.go +++ b/fix50/dontknowtrade/DontKnowTrade.go @@ -52,7 +52,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/email/Email.go b/fix50/email/Email.go index fa6ef4fef..585d181e7 100644 --- a/fix50/email/Email.go +++ b/fix50/email/Email.go @@ -56,7 +56,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/executionacknowledgement/ExecutionAcknowledgement.go b/fix50/executionacknowledgement/ExecutionAcknowledgement.go index c3da076ce..30e52c3f7 100644 --- a/fix50/executionacknowledgement/ExecutionAcknowledgement.go +++ b/fix50/executionacknowledgement/ExecutionAcknowledgement.go @@ -64,7 +64,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/executionreport/ExecutionReport.go b/fix50/executionreport/ExecutionReport.go index 011cb6114..a2739812a 100644 --- a/fix50/executionreport/ExecutionReport.go +++ b/fix50/executionreport/ExecutionReport.go @@ -358,7 +358,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/ioi/IOI.go b/fix50/ioi/IOI.go index eed996314..4f0b4761e 100644 --- a/fix50/ioi/IOI.go +++ b/fix50/ioi/IOI.go @@ -88,7 +88,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/listcancelrequest/ListCancelRequest.go b/fix50/listcancelrequest/ListCancelRequest.go index c596015f5..645d08efc 100644 --- a/fix50/listcancelrequest/ListCancelRequest.go +++ b/fix50/listcancelrequest/ListCancelRequest.go @@ -38,7 +38,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/listexecute/ListExecute.go b/fix50/listexecute/ListExecute.go index ae6eded22..b4e79d509 100644 --- a/fix50/listexecute/ListExecute.go +++ b/fix50/listexecute/ListExecute.go @@ -35,7 +35,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/liststatus/ListStatus.go b/fix50/liststatus/ListStatus.go index ce1fc3858..4edea7ac0 100644 --- a/fix50/liststatus/ListStatus.go +++ b/fix50/liststatus/ListStatus.go @@ -46,7 +46,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/liststatusrequest/ListStatusRequest.go b/fix50/liststatusrequest/ListStatusRequest.go index 76b27bc5a..2708a5881 100644 --- a/fix50/liststatusrequest/ListStatusRequest.go +++ b/fix50/liststatusrequest/ListStatusRequest.go @@ -28,7 +28,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/liststrikeprice/ListStrikePrice.go b/fix50/liststrikeprice/ListStrikePrice.go index 97a5ce5da..176e3c128 100644 --- a/fix50/liststrikeprice/ListStrikePrice.go +++ b/fix50/liststrikeprice/ListStrikePrice.go @@ -32,7 +32,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go b/fix50/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go index 53a54378e..b236b6512 100644 --- a/fix50/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go +++ b/fix50/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go @@ -38,7 +38,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/marketdatarequest/MarketDataRequest.go b/fix50/marketdatarequest/MarketDataRequest.go index 452104127..601fe409c 100644 --- a/fix50/marketdatarequest/MarketDataRequest.go +++ b/fix50/marketdatarequest/MarketDataRequest.go @@ -51,7 +51,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/marketdatarequestreject/MarketDataRequestReject.go b/fix50/marketdatarequestreject/MarketDataRequestReject.go index 83750f6ed..d48298b60 100644 --- a/fix50/marketdatarequestreject/MarketDataRequestReject.go +++ b/fix50/marketdatarequestreject/MarketDataRequestReject.go @@ -33,7 +33,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go b/fix50/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go index 58098fe63..e4db9b273 100644 --- a/fix50/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go +++ b/fix50/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go @@ -57,7 +57,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/massquote/MassQuote.go b/fix50/massquote/MassQuote.go index 3e3fc7323..b44d3860c 100644 --- a/fix50/massquote/MassQuote.go +++ b/fix50/massquote/MassQuote.go @@ -44,7 +44,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/massquoteacknowledgement/MassQuoteAcknowledgement.go b/fix50/massquoteacknowledgement/MassQuoteAcknowledgement.go index 72c5fb58f..85482bd80 100644 --- a/fix50/massquoteacknowledgement/MassQuoteAcknowledgement.go +++ b/fix50/massquoteacknowledgement/MassQuoteAcknowledgement.go @@ -50,7 +50,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/multilegordercancelreplace/MultilegOrderCancelReplace.go b/fix50/multilegordercancelreplace/MultilegOrderCancelReplace.go index 861ce73dc..73315c189 100644 --- a/fix50/multilegordercancelreplace/MultilegOrderCancelReplace.go +++ b/fix50/multilegordercancelreplace/MultilegOrderCancelReplace.go @@ -200,7 +200,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/networkcounterpartysystemstatusrequest/NetworkCounterpartySystemStatusRequest.go b/fix50/networkcounterpartysystemstatusrequest/NetworkCounterpartySystemStatusRequest.go index 9212c96b3..1f31f7a46 100644 --- a/fix50/networkcounterpartysystemstatusrequest/NetworkCounterpartySystemStatusRequest.go +++ b/fix50/networkcounterpartysystemstatusrequest/NetworkCounterpartySystemStatusRequest.go @@ -27,7 +27,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/networkcounterpartysystemstatusresponse/NetworkCounterpartySystemStatusResponse.go b/fix50/networkcounterpartysystemstatusresponse/NetworkCounterpartySystemStatusResponse.go index df450df7f..30f0800a8 100644 --- a/fix50/networkcounterpartysystemstatusresponse/NetworkCounterpartySystemStatusResponse.go +++ b/fix50/networkcounterpartysystemstatusresponse/NetworkCounterpartySystemStatusResponse.go @@ -31,7 +31,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/newordercross/NewOrderCross.go b/fix50/newordercross/NewOrderCross.go index cba5b6eb0..78c39ca1e 100644 --- a/fix50/newordercross/NewOrderCross.go +++ b/fix50/newordercross/NewOrderCross.go @@ -143,7 +143,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/neworderlist/NewOrderList.go b/fix50/neworderlist/NewOrderList.go index 6dba1b530..ec65ab7e6 100644 --- a/fix50/neworderlist/NewOrderList.go +++ b/fix50/neworderlist/NewOrderList.go @@ -62,7 +62,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/newordermultileg/NewOrderMultileg.go b/fix50/newordermultileg/NewOrderMultileg.go index 779b5f547..6b6fd3e17 100644 --- a/fix50/newordermultileg/NewOrderMultileg.go +++ b/fix50/newordermultileg/NewOrderMultileg.go @@ -198,7 +198,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/newordersingle/NewOrderSingle.go b/fix50/newordersingle/NewOrderSingle.go index 7caf1fcb3..ac97076fb 100644 --- a/fix50/newordersingle/NewOrderSingle.go +++ b/fix50/newordersingle/NewOrderSingle.go @@ -222,7 +222,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/news/News.go b/fix50/news/News.go index 5ac984021..ad440044c 100644 --- a/fix50/news/News.go +++ b/fix50/news/News.go @@ -52,7 +52,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/ordercancelreject/OrderCancelReject.go b/fix50/ordercancelreject/OrderCancelReject.go index f5342ee60..aa1dfdb2f 100644 --- a/fix50/ordercancelreject/OrderCancelReject.go +++ b/fix50/ordercancelreject/OrderCancelReject.go @@ -63,7 +63,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/ordercancelreplacerequest/OrderCancelReplaceRequest.go b/fix50/ordercancelreplacerequest/OrderCancelReplaceRequest.go index 72bb4e14d..c2a0adaa3 100644 --- a/fix50/ordercancelreplacerequest/OrderCancelReplaceRequest.go +++ b/fix50/ordercancelreplacerequest/OrderCancelReplaceRequest.go @@ -215,7 +215,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/ordercancelrequest/OrderCancelRequest.go b/fix50/ordercancelrequest/OrderCancelRequest.go index 37d820b27..8f5d44eb9 100644 --- a/fix50/ordercancelrequest/OrderCancelRequest.go +++ b/fix50/ordercancelrequest/OrderCancelRequest.go @@ -68,7 +68,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/ordermasscancelreport/OrderMassCancelReport.go b/fix50/ordermasscancelreport/OrderMassCancelReport.go index 588319882..eaac9eee2 100644 --- a/fix50/ordermasscancelreport/OrderMassCancelReport.go +++ b/fix50/ordermasscancelreport/OrderMassCancelReport.go @@ -63,7 +63,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/ordermasscancelrequest/OrderMassCancelRequest.go b/fix50/ordermasscancelrequest/OrderMassCancelRequest.go index e395d0140..5cb533cd0 100644 --- a/fix50/ordermasscancelrequest/OrderMassCancelRequest.go +++ b/fix50/ordermasscancelrequest/OrderMassCancelRequest.go @@ -50,7 +50,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/ordermassstatusrequest/OrderMassStatusRequest.go b/fix50/ordermassstatusrequest/OrderMassStatusRequest.go index 0afef555c..b09044038 100644 --- a/fix50/ordermassstatusrequest/OrderMassStatusRequest.go +++ b/fix50/ordermassstatusrequest/OrderMassStatusRequest.go @@ -43,7 +43,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/orderstatusrequest/OrderStatusRequest.go b/fix50/orderstatusrequest/OrderStatusRequest.go index 8b348f345..8416d9026 100644 --- a/fix50/orderstatusrequest/OrderStatusRequest.go +++ b/fix50/orderstatusrequest/OrderStatusRequest.go @@ -48,7 +48,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/positionmaintenancereport/PositionMaintenanceReport.go b/fix50/positionmaintenancereport/PositionMaintenanceReport.go index 452c15611..f6e83e44b 100644 --- a/fix50/positionmaintenancereport/PositionMaintenanceReport.go +++ b/fix50/positionmaintenancereport/PositionMaintenanceReport.go @@ -90,7 +90,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/positionmaintenancerequest/PositionMaintenanceRequest.go b/fix50/positionmaintenancerequest/PositionMaintenanceRequest.go index 79972a8f3..e1ab92bc3 100644 --- a/fix50/positionmaintenancerequest/PositionMaintenanceRequest.go +++ b/fix50/positionmaintenancerequest/PositionMaintenanceRequest.go @@ -84,7 +84,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/positionreport/PositionReport.go b/fix50/positionreport/PositionReport.go index 3c91607a5..8bb60b338 100644 --- a/fix50/positionreport/PositionReport.go +++ b/fix50/positionreport/PositionReport.go @@ -90,7 +90,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/quote/Quote.go b/fix50/quote/Quote.go index 9160c380e..4e300e712 100644 --- a/fix50/quote/Quote.go +++ b/fix50/quote/Quote.go @@ -155,7 +155,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/quotecancel/QuoteCancel.go b/fix50/quotecancel/QuoteCancel.go index 6b8a2996f..693140ba4 100644 --- a/fix50/quotecancel/QuoteCancel.go +++ b/fix50/quotecancel/QuoteCancel.go @@ -44,7 +44,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/quoterequest/QuoteRequest.go b/fix50/quoterequest/QuoteRequest.go index 8e5bd96c8..1867d3ac8 100644 --- a/fix50/quoterequest/QuoteRequest.go +++ b/fix50/quoterequest/QuoteRequest.go @@ -37,7 +37,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/quoterequestreject/QuoteRequestReject.go b/fix50/quoterequestreject/QuoteRequestReject.go index dd1c0f236..66fe178bf 100644 --- a/fix50/quoterequestreject/QuoteRequestReject.go +++ b/fix50/quoterequestreject/QuoteRequestReject.go @@ -35,7 +35,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/quoteresponse/QuoteResponse.go b/fix50/quoteresponse/QuoteResponse.go index bb9c10af8..73d2aaef7 100644 --- a/fix50/quoteresponse/QuoteResponse.go +++ b/fix50/quoteresponse/QuoteResponse.go @@ -155,7 +155,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/quotestatusreport/QuoteStatusReport.go b/fix50/quotestatusreport/QuoteStatusReport.go index 7699592b4..09b96a0b6 100644 --- a/fix50/quotestatusreport/QuoteStatusReport.go +++ b/fix50/quotestatusreport/QuoteStatusReport.go @@ -155,7 +155,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/quotestatusrequest/QuoteStatusRequest.go b/fix50/quotestatusrequest/QuoteStatusRequest.go index 702387685..b9ba35c7a 100644 --- a/fix50/quotestatusrequest/QuoteStatusRequest.go +++ b/fix50/quotestatusrequest/QuoteStatusRequest.go @@ -51,7 +51,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/registrationinstructions/RegistrationInstructions.go b/fix50/registrationinstructions/RegistrationInstructions.go index 5d9d83bcd..e040f4487 100644 --- a/fix50/registrationinstructions/RegistrationInstructions.go +++ b/fix50/registrationinstructions/RegistrationInstructions.go @@ -47,7 +47,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/registrationinstructionsresponse/RegistrationInstructionsResponse.go b/fix50/registrationinstructionsresponse/RegistrationInstructionsResponse.go index fc6d6c4c8..e2c8b31fe 100644 --- a/fix50/registrationinstructionsresponse/RegistrationInstructionsResponse.go +++ b/fix50/registrationinstructionsresponse/RegistrationInstructionsResponse.go @@ -41,7 +41,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/requestforpositions/RequestForPositions.go b/fix50/requestforpositions/RequestForPositions.go index b7e66cf89..17ad472c9 100644 --- a/fix50/requestforpositions/RequestForPositions.go +++ b/fix50/requestforpositions/RequestForPositions.go @@ -72,7 +72,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/requestforpositionsack/RequestForPositionsAck.go b/fix50/requestforpositionsack/RequestForPositionsAck.go index 08aee7c49..561654305 100644 --- a/fix50/requestforpositionsack/RequestForPositionsAck.go +++ b/fix50/requestforpositionsack/RequestForPositionsAck.go @@ -76,7 +76,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/rfqrequest/RFQRequest.go b/fix50/rfqrequest/RFQRequest.go index 3978c87b9..4f5004fef 100644 --- a/fix50/rfqrequest/RFQRequest.go +++ b/fix50/rfqrequest/RFQRequest.go @@ -27,7 +27,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/securitydefinition/SecurityDefinition.go b/fix50/securitydefinition/SecurityDefinition.go index 1a2621e43..61ba524ba 100644 --- a/fix50/securitydefinition/SecurityDefinition.go +++ b/fix50/securitydefinition/SecurityDefinition.go @@ -68,7 +68,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/securitydefinitionrequest/SecurityDefinitionRequest.go b/fix50/securitydefinitionrequest/SecurityDefinitionRequest.go index 0fff3d646..741cbe73e 100644 --- a/fix50/securitydefinitionrequest/SecurityDefinitionRequest.go +++ b/fix50/securitydefinitionrequest/SecurityDefinitionRequest.go @@ -60,7 +60,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/securitydefinitionupdatereport/SecurityDefinitionUpdateReport.go b/fix50/securitydefinitionupdatereport/SecurityDefinitionUpdateReport.go index 6f329cd37..48f12b54d 100644 --- a/fix50/securitydefinitionupdatereport/SecurityDefinitionUpdateReport.go +++ b/fix50/securitydefinitionupdatereport/SecurityDefinitionUpdateReport.go @@ -61,7 +61,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/securitylist/SecurityList.go b/fix50/securitylist/SecurityList.go index 1840d66ac..4b3defbce 100644 --- a/fix50/securitylist/SecurityList.go +++ b/fix50/securitylist/SecurityList.go @@ -37,7 +37,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/securitylistrequest/SecurityListRequest.go b/fix50/securitylistrequest/SecurityListRequest.go index 698ee05fb..15d6c7320 100644 --- a/fix50/securitylistrequest/SecurityListRequest.go +++ b/fix50/securitylistrequest/SecurityListRequest.go @@ -53,7 +53,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/securitylistupdatereport/SecurityListUpdateReport.go b/fix50/securitylistupdatereport/SecurityListUpdateReport.go index 98d35bb31..962d13917 100644 --- a/fix50/securitylistupdatereport/SecurityListUpdateReport.go +++ b/fix50/securitylistupdatereport/SecurityListUpdateReport.go @@ -41,7 +41,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/securitystatus/SecurityStatus.go b/fix50/securitystatus/SecurityStatus.go index 525eb19b4..35b20e983 100644 --- a/fix50/securitystatus/SecurityStatus.go +++ b/fix50/securitystatus/SecurityStatus.go @@ -77,7 +77,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/securitystatusrequest/SecurityStatusRequest.go b/fix50/securitystatusrequest/SecurityStatusRequest.go index 1eabd4493..8c750af8f 100644 --- a/fix50/securitystatusrequest/SecurityStatusRequest.go +++ b/fix50/securitystatusrequest/SecurityStatusRequest.go @@ -42,7 +42,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/securitytyperequest/SecurityTypeRequest.go b/fix50/securitytyperequest/SecurityTypeRequest.go index 74d5bb5bf..a8adf2709 100644 --- a/fix50/securitytyperequest/SecurityTypeRequest.go +++ b/fix50/securitytyperequest/SecurityTypeRequest.go @@ -38,7 +38,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/securitytypes/SecurityTypes.go b/fix50/securitytypes/SecurityTypes.go index 6ceea5d2f..925a6f926 100644 --- a/fix50/securitytypes/SecurityTypes.go +++ b/fix50/securitytypes/SecurityTypes.go @@ -45,7 +45,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/settlementinstructionrequest/SettlementInstructionRequest.go b/fix50/settlementinstructionrequest/SettlementInstructionRequest.go index ff36b303d..5b9399856 100644 --- a/fix50/settlementinstructionrequest/SettlementInstructionRequest.go +++ b/fix50/settlementinstructionrequest/SettlementInstructionRequest.go @@ -54,7 +54,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/settlementinstructions/SettlementInstructions.go b/fix50/settlementinstructions/SettlementInstructions.go index 4686469ae..798456e66 100644 --- a/fix50/settlementinstructions/SettlementInstructions.go +++ b/fix50/settlementinstructions/SettlementInstructions.go @@ -42,7 +42,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/tradecapturereport/TradeCaptureReport.go b/fix50/tradecapturereport/TradeCaptureReport.go index 8deab8a34..520c24e09 100644 --- a/fix50/tradecapturereport/TradeCaptureReport.go +++ b/fix50/tradecapturereport/TradeCaptureReport.go @@ -196,7 +196,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/tradecapturereportack/TradeCaptureReportAck.go b/fix50/tradecapturereportack/TradeCaptureReportAck.go index 48b3558b4..eee233f2c 100644 --- a/fix50/tradecapturereportack/TradeCaptureReportAck.go +++ b/fix50/tradecapturereportack/TradeCaptureReportAck.go @@ -184,7 +184,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/tradecapturereportrequest/TradeCaptureReportRequest.go b/fix50/tradecapturereportrequest/TradeCaptureReportRequest.go index e869a31e8..89a740116 100644 --- a/fix50/tradecapturereportrequest/TradeCaptureReportRequest.go +++ b/fix50/tradecapturereportrequest/TradeCaptureReportRequest.go @@ -111,7 +111,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/tradecapturereportrequestack/TradeCaptureReportRequestAck.go b/fix50/tradecapturereportrequestack/TradeCaptureReportRequestAck.go index c176b4243..d8f26dee9 100644 --- a/fix50/tradecapturereportrequestack/TradeCaptureReportRequestAck.go +++ b/fix50/tradecapturereportrequestack/TradeCaptureReportRequestAck.go @@ -63,7 +63,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/tradingsessionlist/TradingSessionList.go b/fix50/tradingsessionlist/TradingSessionList.go index babaea037..fd3bd1a0c 100644 --- a/fix50/tradingsessionlist/TradingSessionList.go +++ b/fix50/tradingsessionlist/TradingSessionList.go @@ -25,7 +25,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/tradingsessionlistrequest/TradingSessionListRequest.go b/fix50/tradingsessionlistrequest/TradingSessionListRequest.go index 338f52b51..9a0410ddc 100644 --- a/fix50/tradingsessionlistrequest/TradingSessionListRequest.go +++ b/fix50/tradingsessionlistrequest/TradingSessionListRequest.go @@ -34,7 +34,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/tradingsessionstatus/TradingSessionStatus.go b/fix50/tradingsessionstatus/TradingSessionStatus.go index 37735c08c..8cdb308c2 100644 --- a/fix50/tradingsessionstatus/TradingSessionStatus.go +++ b/fix50/tradingsessionstatus/TradingSessionStatus.go @@ -58,7 +58,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/tradingsessionstatusrequest/TradingSessionStatusRequest.go b/fix50/tradingsessionstatusrequest/TradingSessionStatusRequest.go index 96837a83b..f8f182b37 100644 --- a/fix50/tradingsessionstatusrequest/TradingSessionStatusRequest.go +++ b/fix50/tradingsessionstatusrequest/TradingSessionStatusRequest.go @@ -34,7 +34,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/userrequest/UserRequest.go b/fix50/userrequest/UserRequest.go index 91a17c623..dbb7acfdd 100644 --- a/fix50/userrequest/UserRequest.go +++ b/fix50/userrequest/UserRequest.go @@ -34,7 +34,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50/userresponse/UserResponse.go b/fix50/userresponse/UserResponse.go index 6f9ceb839..9d6bc7c3b 100644 --- a/fix50/userresponse/UserResponse.go +++ b/fix50/userresponse/UserResponse.go @@ -28,7 +28,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/adjustedpositionreport/AdjustedPositionReport.go b/fix50sp1/adjustedpositionreport/AdjustedPositionReport.go index 4bb7a9bde..f122e5217 100644 --- a/fix50sp1/adjustedpositionreport/AdjustedPositionReport.go +++ b/fix50sp1/adjustedpositionreport/AdjustedPositionReport.go @@ -43,7 +43,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/advertisement/Advertisement.go b/fix50sp1/advertisement/Advertisement.go index 88baa8c42..56493f86a 100644 --- a/fix50sp1/advertisement/Advertisement.go +++ b/fix50sp1/advertisement/Advertisement.go @@ -64,7 +64,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/allocationinstruction/AllocationInstruction.go b/fix50sp1/allocationinstruction/AllocationInstruction.go index 6d23ca1a0..75e5122a0 100644 --- a/fix50sp1/allocationinstruction/AllocationInstruction.go +++ b/fix50sp1/allocationinstruction/AllocationInstruction.go @@ -180,7 +180,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/allocationinstructionack/AllocationInstructionAck.go b/fix50sp1/allocationinstructionack/AllocationInstructionAck.go index 2bd5dc52c..8d371d813 100644 --- a/fix50sp1/allocationinstructionack/AllocationInstructionAck.go +++ b/fix50sp1/allocationinstructionack/AllocationInstructionAck.go @@ -55,7 +55,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/allocationinstructionalert/AllocationInstructionAlert.go b/fix50sp1/allocationinstructionalert/AllocationInstructionAlert.go index 452f7c882..495b863c2 100644 --- a/fix50sp1/allocationinstructionalert/AllocationInstructionAlert.go +++ b/fix50sp1/allocationinstructionalert/AllocationInstructionAlert.go @@ -180,7 +180,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/allocationreport/AllocationReport.go b/fix50sp1/allocationreport/AllocationReport.go index 8a2b011c0..02ecc3ce2 100644 --- a/fix50sp1/allocationreport/AllocationReport.go +++ b/fix50sp1/allocationreport/AllocationReport.go @@ -190,7 +190,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/allocationreportack/AllocationReportAck.go b/fix50sp1/allocationreportack/AllocationReportAck.go index 250f37c72..92ae5b6e1 100644 --- a/fix50sp1/allocationreportack/AllocationReportAck.go +++ b/fix50sp1/allocationreportack/AllocationReportAck.go @@ -65,7 +65,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/applicationmessagereport/ApplicationMessageReport.go b/fix50sp1/applicationmessagereport/ApplicationMessageReport.go index 03e024f1d..4a0cbb9cf 100644 --- a/fix50sp1/applicationmessagereport/ApplicationMessageReport.go +++ b/fix50sp1/applicationmessagereport/ApplicationMessageReport.go @@ -33,7 +33,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/applicationmessagerequest/ApplicationMessageRequest.go b/fix50sp1/applicationmessagerequest/ApplicationMessageRequest.go index 243def9e8..04f4a2f72 100644 --- a/fix50sp1/applicationmessagerequest/ApplicationMessageRequest.go +++ b/fix50sp1/applicationmessagerequest/ApplicationMessageRequest.go @@ -33,7 +33,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/applicationmessagerequestack/ApplicationMessageRequestAck.go b/fix50sp1/applicationmessagerequestack/ApplicationMessageRequestAck.go index 25028e587..ed2599529 100644 --- a/fix50sp1/applicationmessagerequestack/ApplicationMessageRequestAck.go +++ b/fix50sp1/applicationmessagerequestack/ApplicationMessageRequestAck.go @@ -39,7 +39,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/assignmentreport/AssignmentReport.go b/fix50sp1/assignmentreport/AssignmentReport.go index dec84c07a..e8faa5aa6 100644 --- a/fix50sp1/assignmentreport/AssignmentReport.go +++ b/fix50sp1/assignmentreport/AssignmentReport.go @@ -85,7 +85,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/bidrequest/BidRequest.go b/fix50sp1/bidrequest/BidRequest.go index 3674b5d75..5d6dc9699 100644 --- a/fix50sp1/bidrequest/BidRequest.go +++ b/fix50sp1/bidrequest/BidRequest.go @@ -81,7 +81,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/bidresponse/BidResponse.go b/fix50sp1/bidresponse/BidResponse.go index bc3ad89d6..9ab4000dd 100644 --- a/fix50sp1/bidresponse/BidResponse.go +++ b/fix50sp1/bidresponse/BidResponse.go @@ -27,7 +27,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/businessmessagereject/BusinessMessageReject.go b/fix50sp1/businessmessagereject/BusinessMessageReject.go index d15fede07..840c6a873 100644 --- a/fix50sp1/businessmessagereject/BusinessMessageReject.go +++ b/fix50sp1/businessmessagereject/BusinessMessageReject.go @@ -40,7 +40,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/collateralassignment/CollateralAssignment.go b/fix50sp1/collateralassignment/CollateralAssignment.go index 78da6ec21..09051cfa4 100644 --- a/fix50sp1/collateralassignment/CollateralAssignment.go +++ b/fix50sp1/collateralassignment/CollateralAssignment.go @@ -127,7 +127,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/collateralinquiry/CollateralInquiry.go b/fix50sp1/collateralinquiry/CollateralInquiry.go index 9f094df12..fdad7952b 100644 --- a/fix50sp1/collateralinquiry/CollateralInquiry.go +++ b/fix50sp1/collateralinquiry/CollateralInquiry.go @@ -120,7 +120,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/collateralinquiryack/CollateralInquiryAck.go b/fix50sp1/collateralinquiryack/CollateralInquiryAck.go index 71dd2c778..8f55e6f87 100644 --- a/fix50sp1/collateralinquiryack/CollateralInquiryAck.go +++ b/fix50sp1/collateralinquiryack/CollateralInquiryAck.go @@ -92,7 +92,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/collateralreport/CollateralReport.go b/fix50sp1/collateralreport/CollateralReport.go index 3eb1e6d36..e8ef7be5e 100644 --- a/fix50sp1/collateralreport/CollateralReport.go +++ b/fix50sp1/collateralreport/CollateralReport.go @@ -129,7 +129,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/collateralrequest/CollateralRequest.go b/fix50sp1/collateralrequest/CollateralRequest.go index e7e0222a3..1998a35e1 100644 --- a/fix50sp1/collateralrequest/CollateralRequest.go +++ b/fix50sp1/collateralrequest/CollateralRequest.go @@ -118,7 +118,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/collateralresponse/CollateralResponse.go b/fix50sp1/collateralresponse/CollateralResponse.go index fb32ca816..65ee90cfa 100644 --- a/fix50sp1/collateralresponse/CollateralResponse.go +++ b/fix50sp1/collateralresponse/CollateralResponse.go @@ -122,7 +122,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/confirmation/Confirmation.go b/fix50sp1/confirmation/Confirmation.go index 0c9f248bd..6f17b5767 100644 --- a/fix50sp1/confirmation/Confirmation.go +++ b/fix50sp1/confirmation/Confirmation.go @@ -166,7 +166,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/confirmationack/ConfirmationAck.go b/fix50sp1/confirmationack/ConfirmationAck.go index 7580a0fa0..e355a24d2 100644 --- a/fix50sp1/confirmationack/ConfirmationAck.go +++ b/fix50sp1/confirmationack/ConfirmationAck.go @@ -39,7 +39,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/confirmationrequest/ConfirmationRequest.go b/fix50sp1/confirmationrequest/ConfirmationRequest.go index 6d3122772..cc75bf361 100644 --- a/fix50sp1/confirmationrequest/ConfirmationRequest.go +++ b/fix50sp1/confirmationrequest/ConfirmationRequest.go @@ -48,7 +48,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/contraryintentionreport/ContraryIntentionReport.go b/fix50sp1/contraryintentionreport/ContraryIntentionReport.go index 754380f30..86db942f7 100644 --- a/fix50sp1/contraryintentionreport/ContraryIntentionReport.go +++ b/fix50sp1/contraryintentionreport/ContraryIntentionReport.go @@ -52,7 +52,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/crossordercancelreplacerequest/CrossOrderCancelReplaceRequest.go b/fix50sp1/crossordercancelreplacerequest/CrossOrderCancelReplaceRequest.go index 1fe31f7e6..2329cd0cb 100644 --- a/fix50sp1/crossordercancelreplacerequest/CrossOrderCancelReplaceRequest.go +++ b/fix50sp1/crossordercancelreplacerequest/CrossOrderCancelReplaceRequest.go @@ -149,7 +149,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/crossordercancelrequest/CrossOrderCancelRequest.go b/fix50sp1/crossordercancelrequest/CrossOrderCancelRequest.go index d27021953..bcf00ffe2 100644 --- a/fix50sp1/crossordercancelrequest/CrossOrderCancelRequest.go +++ b/fix50sp1/crossordercancelrequest/CrossOrderCancelRequest.go @@ -50,7 +50,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/derivativesecuritylist/DerivativeSecurityList.go b/fix50sp1/derivativesecuritylist/DerivativeSecurityList.go index aa8e905d4..3aa96f7c8 100644 --- a/fix50sp1/derivativesecuritylist/DerivativeSecurityList.go +++ b/fix50sp1/derivativesecuritylist/DerivativeSecurityList.go @@ -42,7 +42,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/derivativesecuritylistrequest/DerivativeSecurityListRequest.go b/fix50sp1/derivativesecuritylistrequest/DerivativeSecurityListRequest.go index a7f1f2009..46ef2767c 100644 --- a/fix50sp1/derivativesecuritylistrequest/DerivativeSecurityListRequest.go +++ b/fix50sp1/derivativesecuritylistrequest/DerivativeSecurityListRequest.go @@ -50,7 +50,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/derivativesecuritylistupdatereport/DerivativeSecurityListUpdateReport.go b/fix50sp1/derivativesecuritylistupdatereport/DerivativeSecurityListUpdateReport.go index 18f87c985..06d32f8dd 100644 --- a/fix50sp1/derivativesecuritylistupdatereport/DerivativeSecurityListUpdateReport.go +++ b/fix50sp1/derivativesecuritylistupdatereport/DerivativeSecurityListUpdateReport.go @@ -44,7 +44,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/dontknowtrade/DontKnowTrade.go b/fix50sp1/dontknowtrade/DontKnowTrade.go index dc4ce48b8..167aeed83 100644 --- a/fix50sp1/dontknowtrade/DontKnowTrade.go +++ b/fix50sp1/dontknowtrade/DontKnowTrade.go @@ -52,7 +52,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/email/Email.go b/fix50sp1/email/Email.go index 44536a16a..abd58e0e8 100644 --- a/fix50sp1/email/Email.go +++ b/fix50sp1/email/Email.go @@ -56,7 +56,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/executionacknowledgement/ExecutionAcknowledgement.go b/fix50sp1/executionacknowledgement/ExecutionAcknowledgement.go index 6748365bf..5e5ed174f 100644 --- a/fix50sp1/executionacknowledgement/ExecutionAcknowledgement.go +++ b/fix50sp1/executionacknowledgement/ExecutionAcknowledgement.go @@ -64,7 +64,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/executionreport/ExecutionReport.go b/fix50sp1/executionreport/ExecutionReport.go index bb02327ad..e7d362d6a 100644 --- a/fix50sp1/executionreport/ExecutionReport.go +++ b/fix50sp1/executionreport/ExecutionReport.go @@ -385,7 +385,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/ioi/IOI.go b/fix50sp1/ioi/IOI.go index 3d95fc642..124213c21 100644 --- a/fix50sp1/ioi/IOI.go +++ b/fix50sp1/ioi/IOI.go @@ -91,7 +91,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/listcancelrequest/ListCancelRequest.go b/fix50sp1/listcancelrequest/ListCancelRequest.go index 6c8eba479..14c477c61 100644 --- a/fix50sp1/listcancelrequest/ListCancelRequest.go +++ b/fix50sp1/listcancelrequest/ListCancelRequest.go @@ -38,7 +38,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/listexecute/ListExecute.go b/fix50sp1/listexecute/ListExecute.go index 6d68f32b0..72c6b5b04 100644 --- a/fix50sp1/listexecute/ListExecute.go +++ b/fix50sp1/listexecute/ListExecute.go @@ -35,7 +35,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/liststatus/ListStatus.go b/fix50sp1/liststatus/ListStatus.go index 1eda79364..4ceec3b34 100644 --- a/fix50sp1/liststatus/ListStatus.go +++ b/fix50sp1/liststatus/ListStatus.go @@ -50,7 +50,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/liststatusrequest/ListStatusRequest.go b/fix50sp1/liststatusrequest/ListStatusRequest.go index 182830d32..5d5b97cd7 100644 --- a/fix50sp1/liststatusrequest/ListStatusRequest.go +++ b/fix50sp1/liststatusrequest/ListStatusRequest.go @@ -28,7 +28,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/liststrikeprice/ListStrikePrice.go b/fix50sp1/liststrikeprice/ListStrikePrice.go index b8d79b530..053fd5d11 100644 --- a/fix50sp1/liststrikeprice/ListStrikePrice.go +++ b/fix50sp1/liststrikeprice/ListStrikePrice.go @@ -29,7 +29,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go b/fix50sp1/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go index 14219627f..1f5b98fea 100644 --- a/fix50sp1/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go +++ b/fix50sp1/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go @@ -41,7 +41,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/marketdatarequest/MarketDataRequest.go b/fix50sp1/marketdatarequest/MarketDataRequest.go index dd41c8780..671248c48 100644 --- a/fix50sp1/marketdatarequest/MarketDataRequest.go +++ b/fix50sp1/marketdatarequest/MarketDataRequest.go @@ -54,7 +54,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/marketdatarequestreject/MarketDataRequestReject.go b/fix50sp1/marketdatarequestreject/MarketDataRequestReject.go index 5576f33b4..d39f69c92 100644 --- a/fix50sp1/marketdatarequestreject/MarketDataRequestReject.go +++ b/fix50sp1/marketdatarequestreject/MarketDataRequestReject.go @@ -36,7 +36,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go b/fix50sp1/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go index 88f64acb7..703f782bb 100644 --- a/fix50sp1/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go +++ b/fix50sp1/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go @@ -68,7 +68,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/marketdefinition/MarketDefinition.go b/fix50sp1/marketdefinition/MarketDefinition.go index 6d38fb8af..c9e4e2cfc 100644 --- a/fix50sp1/marketdefinition/MarketDefinition.go +++ b/fix50sp1/marketdefinition/MarketDefinition.go @@ -62,7 +62,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/marketdefinitionrequest/MarketDefinitionRequest.go b/fix50sp1/marketdefinitionrequest/MarketDefinitionRequest.go index 15e93e981..78ae170b0 100644 --- a/fix50sp1/marketdefinitionrequest/MarketDefinitionRequest.go +++ b/fix50sp1/marketdefinitionrequest/MarketDefinitionRequest.go @@ -30,7 +30,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/marketdefinitionupdatereport/MarketDefinitionUpdateReport.go b/fix50sp1/marketdefinitionupdatereport/MarketDefinitionUpdateReport.go index 637b1d722..402276c31 100644 --- a/fix50sp1/marketdefinitionupdatereport/MarketDefinitionUpdateReport.go +++ b/fix50sp1/marketdefinitionupdatereport/MarketDefinitionUpdateReport.go @@ -64,7 +64,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/massquote/MassQuote.go b/fix50sp1/massquote/MassQuote.go index f157bb806..66d1d9d4a 100644 --- a/fix50sp1/massquote/MassQuote.go +++ b/fix50sp1/massquote/MassQuote.go @@ -44,7 +44,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/massquoteacknowledgement/MassQuoteAcknowledgement.go b/fix50sp1/massquoteacknowledgement/MassQuoteAcknowledgement.go index d343c6143..730a0aaf5 100644 --- a/fix50sp1/massquoteacknowledgement/MassQuoteAcknowledgement.go +++ b/fix50sp1/massquoteacknowledgement/MassQuoteAcknowledgement.go @@ -52,7 +52,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/multilegordercancelreplace/MultilegOrderCancelReplace.go b/fix50sp1/multilegordercancelreplace/MultilegOrderCancelReplace.go index f3973d969..6f239c3a1 100644 --- a/fix50sp1/multilegordercancelreplace/MultilegOrderCancelReplace.go +++ b/fix50sp1/multilegordercancelreplace/MultilegOrderCancelReplace.go @@ -206,7 +206,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/networkcounterpartysystemstatusrequest/NetworkCounterpartySystemStatusRequest.go b/fix50sp1/networkcounterpartysystemstatusrequest/NetworkCounterpartySystemStatusRequest.go index 39c4e67c1..41c898bb4 100644 --- a/fix50sp1/networkcounterpartysystemstatusrequest/NetworkCounterpartySystemStatusRequest.go +++ b/fix50sp1/networkcounterpartysystemstatusrequest/NetworkCounterpartySystemStatusRequest.go @@ -27,7 +27,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/networkcounterpartysystemstatusresponse/NetworkCounterpartySystemStatusResponse.go b/fix50sp1/networkcounterpartysystemstatusresponse/NetworkCounterpartySystemStatusResponse.go index cf14ec45d..13a23577d 100644 --- a/fix50sp1/networkcounterpartysystemstatusresponse/NetworkCounterpartySystemStatusResponse.go +++ b/fix50sp1/networkcounterpartysystemstatusresponse/NetworkCounterpartySystemStatusResponse.go @@ -31,7 +31,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/newordercross/NewOrderCross.go b/fix50sp1/newordercross/NewOrderCross.go index c1f1b27c5..57f4d0606 100644 --- a/fix50sp1/newordercross/NewOrderCross.go +++ b/fix50sp1/newordercross/NewOrderCross.go @@ -143,7 +143,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/neworderlist/NewOrderList.go b/fix50sp1/neworderlist/NewOrderList.go index 516bff76b..94f32ad89 100644 --- a/fix50sp1/neworderlist/NewOrderList.go +++ b/fix50sp1/neworderlist/NewOrderList.go @@ -64,7 +64,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/newordermultileg/NewOrderMultileg.go b/fix50sp1/newordermultileg/NewOrderMultileg.go index 8e694d64d..3d47f0bc8 100644 --- a/fix50sp1/newordermultileg/NewOrderMultileg.go +++ b/fix50sp1/newordermultileg/NewOrderMultileg.go @@ -204,7 +204,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/newordersingle/NewOrderSingle.go b/fix50sp1/newordersingle/NewOrderSingle.go index 651f17aa2..9c62dd3d6 100644 --- a/fix50sp1/newordersingle/NewOrderSingle.go +++ b/fix50sp1/newordersingle/NewOrderSingle.go @@ -222,7 +222,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/news/News.go b/fix50sp1/news/News.go index 3c21168d4..38f3b44c0 100644 --- a/fix50sp1/news/News.go +++ b/fix50sp1/news/News.go @@ -55,7 +55,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/ordercancelreject/OrderCancelReject.go b/fix50sp1/ordercancelreject/OrderCancelReject.go index 4dd6afa73..3fe4b12ab 100644 --- a/fix50sp1/ordercancelreject/OrderCancelReject.go +++ b/fix50sp1/ordercancelreject/OrderCancelReject.go @@ -63,7 +63,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/ordercancelreplacerequest/OrderCancelReplaceRequest.go b/fix50sp1/ordercancelreplacerequest/OrderCancelReplaceRequest.go index 150c66e5a..e1cadfc12 100644 --- a/fix50sp1/ordercancelreplacerequest/OrderCancelReplaceRequest.go +++ b/fix50sp1/ordercancelreplacerequest/OrderCancelReplaceRequest.go @@ -215,7 +215,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/ordercancelrequest/OrderCancelRequest.go b/fix50sp1/ordercancelrequest/OrderCancelRequest.go index 66f6221d2..51ce7ab98 100644 --- a/fix50sp1/ordercancelrequest/OrderCancelRequest.go +++ b/fix50sp1/ordercancelrequest/OrderCancelRequest.go @@ -68,7 +68,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/ordermassactionreport/OrderMassActionReport.go b/fix50sp1/ordermassactionreport/OrderMassActionReport.go index 8d78849ce..73f5b58ee 100644 --- a/fix50sp1/ordermassactionreport/OrderMassActionReport.go +++ b/fix50sp1/ordermassactionreport/OrderMassActionReport.go @@ -70,7 +70,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/ordermassactionrequest/OrderMassActionRequest.go b/fix50sp1/ordermassactionrequest/OrderMassActionRequest.go index 2763ee767..5974fa874 100644 --- a/fix50sp1/ordermassactionrequest/OrderMassActionRequest.go +++ b/fix50sp1/ordermassactionrequest/OrderMassActionRequest.go @@ -56,7 +56,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/ordermasscancelreport/OrderMassCancelReport.go b/fix50sp1/ordermasscancelreport/OrderMassCancelReport.go index bf8ca3da9..7e464f992 100644 --- a/fix50sp1/ordermasscancelreport/OrderMassCancelReport.go +++ b/fix50sp1/ordermasscancelreport/OrderMassCancelReport.go @@ -72,7 +72,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/ordermasscancelrequest/OrderMassCancelRequest.go b/fix50sp1/ordermasscancelrequest/OrderMassCancelRequest.go index cd89e9ede..156b6a6ed 100644 --- a/fix50sp1/ordermasscancelrequest/OrderMassCancelRequest.go +++ b/fix50sp1/ordermasscancelrequest/OrderMassCancelRequest.go @@ -54,7 +54,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/ordermassstatusrequest/OrderMassStatusRequest.go b/fix50sp1/ordermassstatusrequest/OrderMassStatusRequest.go index 4cb5157c3..9756caf7a 100644 --- a/fix50sp1/ordermassstatusrequest/OrderMassStatusRequest.go +++ b/fix50sp1/ordermassstatusrequest/OrderMassStatusRequest.go @@ -43,7 +43,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/orderstatusrequest/OrderStatusRequest.go b/fix50sp1/orderstatusrequest/OrderStatusRequest.go index 09e7b400e..4f70b6292 100644 --- a/fix50sp1/orderstatusrequest/OrderStatusRequest.go +++ b/fix50sp1/orderstatusrequest/OrderStatusRequest.go @@ -48,7 +48,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/positionmaintenancereport/PositionMaintenanceReport.go b/fix50sp1/positionmaintenancereport/PositionMaintenanceReport.go index bb17e5e66..c2f5530ec 100644 --- a/fix50sp1/positionmaintenancereport/PositionMaintenanceReport.go +++ b/fix50sp1/positionmaintenancereport/PositionMaintenanceReport.go @@ -90,7 +90,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/positionmaintenancerequest/PositionMaintenanceRequest.go b/fix50sp1/positionmaintenancerequest/PositionMaintenanceRequest.go index 83c11bd56..f3adad812 100644 --- a/fix50sp1/positionmaintenancerequest/PositionMaintenanceRequest.go +++ b/fix50sp1/positionmaintenancerequest/PositionMaintenanceRequest.go @@ -84,7 +84,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/positionreport/PositionReport.go b/fix50sp1/positionreport/PositionReport.go index fd229ab1d..73791d821 100644 --- a/fix50sp1/positionreport/PositionReport.go +++ b/fix50sp1/positionreport/PositionReport.go @@ -93,7 +93,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/quote/Quote.go b/fix50sp1/quote/Quote.go index d0b35a1ac..c807b72dd 100644 --- a/fix50sp1/quote/Quote.go +++ b/fix50sp1/quote/Quote.go @@ -161,7 +161,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/quotecancel/QuoteCancel.go b/fix50sp1/quotecancel/QuoteCancel.go index a78c53ff7..16d633192 100644 --- a/fix50sp1/quotecancel/QuoteCancel.go +++ b/fix50sp1/quotecancel/QuoteCancel.go @@ -46,7 +46,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/quoterequest/QuoteRequest.go b/fix50sp1/quoterequest/QuoteRequest.go index 8b9b93355..86db3a35e 100644 --- a/fix50sp1/quoterequest/QuoteRequest.go +++ b/fix50sp1/quoterequest/QuoteRequest.go @@ -46,7 +46,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/quoterequestreject/QuoteRequestReject.go b/fix50sp1/quoterequestreject/QuoteRequestReject.go index 63bd0b67e..39b670b5f 100644 --- a/fix50sp1/quoterequestreject/QuoteRequestReject.go +++ b/fix50sp1/quoterequestreject/QuoteRequestReject.go @@ -44,7 +44,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/quoteresponse/QuoteResponse.go b/fix50sp1/quoteresponse/QuoteResponse.go index 8e5acc1d2..ea110cd11 100644 --- a/fix50sp1/quoteresponse/QuoteResponse.go +++ b/fix50sp1/quoteresponse/QuoteResponse.go @@ -163,7 +163,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/quotestatusreport/QuoteStatusReport.go b/fix50sp1/quotestatusreport/QuoteStatusReport.go index 367d35baf..0c536059b 100644 --- a/fix50sp1/quotestatusreport/QuoteStatusReport.go +++ b/fix50sp1/quotestatusreport/QuoteStatusReport.go @@ -163,7 +163,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/quotestatusrequest/QuoteStatusRequest.go b/fix50sp1/quotestatusrequest/QuoteStatusRequest.go index 105ca7587..5d8e9fe02 100644 --- a/fix50sp1/quotestatusrequest/QuoteStatusRequest.go +++ b/fix50sp1/quotestatusrequest/QuoteStatusRequest.go @@ -51,7 +51,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/registrationinstructions/RegistrationInstructions.go b/fix50sp1/registrationinstructions/RegistrationInstructions.go index f523634f3..12f7dc8b1 100644 --- a/fix50sp1/registrationinstructions/RegistrationInstructions.go +++ b/fix50sp1/registrationinstructions/RegistrationInstructions.go @@ -47,7 +47,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/registrationinstructionsresponse/RegistrationInstructionsResponse.go b/fix50sp1/registrationinstructionsresponse/RegistrationInstructionsResponse.go index de3ff67e6..e484b98ff 100644 --- a/fix50sp1/registrationinstructionsresponse/RegistrationInstructionsResponse.go +++ b/fix50sp1/registrationinstructionsresponse/RegistrationInstructionsResponse.go @@ -41,7 +41,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/requestforpositions/RequestForPositions.go b/fix50sp1/requestforpositions/RequestForPositions.go index f680b5c43..f9313301a 100644 --- a/fix50sp1/requestforpositions/RequestForPositions.go +++ b/fix50sp1/requestforpositions/RequestForPositions.go @@ -72,7 +72,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/requestforpositionsack/RequestForPositionsAck.go b/fix50sp1/requestforpositionsack/RequestForPositionsAck.go index d2209d127..eb652d1bf 100644 --- a/fix50sp1/requestforpositionsack/RequestForPositionsAck.go +++ b/fix50sp1/requestforpositionsack/RequestForPositionsAck.go @@ -76,7 +76,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/rfqrequest/RFQRequest.go b/fix50sp1/rfqrequest/RFQRequest.go index 65a3bc64a..92e683093 100644 --- a/fix50sp1/rfqrequest/RFQRequest.go +++ b/fix50sp1/rfqrequest/RFQRequest.go @@ -32,7 +32,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/securitydefinition/SecurityDefinition.go b/fix50sp1/securitydefinition/SecurityDefinition.go index 285b0d702..eaa9b70d9 100644 --- a/fix50sp1/securitydefinition/SecurityDefinition.go +++ b/fix50sp1/securitydefinition/SecurityDefinition.go @@ -67,7 +67,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/securitydefinitionrequest/SecurityDefinitionRequest.go b/fix50sp1/securitydefinitionrequest/SecurityDefinitionRequest.go index dc94984cb..ef1489015 100644 --- a/fix50sp1/securitydefinitionrequest/SecurityDefinitionRequest.go +++ b/fix50sp1/securitydefinitionrequest/SecurityDefinitionRequest.go @@ -65,7 +65,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/securitydefinitionupdatereport/SecurityDefinitionUpdateReport.go b/fix50sp1/securitydefinitionupdatereport/SecurityDefinitionUpdateReport.go index 332c8f672..2ba54c13c 100644 --- a/fix50sp1/securitydefinitionupdatereport/SecurityDefinitionUpdateReport.go +++ b/fix50sp1/securitydefinitionupdatereport/SecurityDefinitionUpdateReport.go @@ -69,7 +69,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/securitylist/SecurityList.go b/fix50sp1/securitylist/SecurityList.go index c64e2c6fe..e25c193ed 100644 --- a/fix50sp1/securitylist/SecurityList.go +++ b/fix50sp1/securitylist/SecurityList.go @@ -44,7 +44,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/securitylistrequest/SecurityListRequest.go b/fix50sp1/securitylistrequest/SecurityListRequest.go index a3c43de91..533e3728d 100644 --- a/fix50sp1/securitylistrequest/SecurityListRequest.go +++ b/fix50sp1/securitylistrequest/SecurityListRequest.go @@ -57,7 +57,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/securitylistupdatereport/SecurityListUpdateReport.go b/fix50sp1/securitylistupdatereport/SecurityListUpdateReport.go index f4119b155..b7dbfbf54 100644 --- a/fix50sp1/securitylistupdatereport/SecurityListUpdateReport.go +++ b/fix50sp1/securitylistupdatereport/SecurityListUpdateReport.go @@ -48,7 +48,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/securitystatus/SecurityStatus.go b/fix50sp1/securitystatus/SecurityStatus.go index dcf83b39e..f314a6376 100644 --- a/fix50sp1/securitystatus/SecurityStatus.go +++ b/fix50sp1/securitystatus/SecurityStatus.go @@ -90,7 +90,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/securitystatusrequest/SecurityStatusRequest.go b/fix50sp1/securitystatusrequest/SecurityStatusRequest.go index 4a7bb09bc..000c863db 100644 --- a/fix50sp1/securitystatusrequest/SecurityStatusRequest.go +++ b/fix50sp1/securitystatusrequest/SecurityStatusRequest.go @@ -46,7 +46,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/securitytyperequest/SecurityTypeRequest.go b/fix50sp1/securitytyperequest/SecurityTypeRequest.go index 53c4eb047..5062464be 100644 --- a/fix50sp1/securitytyperequest/SecurityTypeRequest.go +++ b/fix50sp1/securitytyperequest/SecurityTypeRequest.go @@ -42,7 +42,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/securitytypes/SecurityTypes.go b/fix50sp1/securitytypes/SecurityTypes.go index b7f77e7a2..5c58a58ca 100644 --- a/fix50sp1/securitytypes/SecurityTypes.go +++ b/fix50sp1/securitytypes/SecurityTypes.go @@ -52,7 +52,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/settlementinstructionrequest/SettlementInstructionRequest.go b/fix50sp1/settlementinstructionrequest/SettlementInstructionRequest.go index b8adde044..b0518a928 100644 --- a/fix50sp1/settlementinstructionrequest/SettlementInstructionRequest.go +++ b/fix50sp1/settlementinstructionrequest/SettlementInstructionRequest.go @@ -54,7 +54,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/settlementinstructions/SettlementInstructions.go b/fix50sp1/settlementinstructions/SettlementInstructions.go index ef98a140c..5f80c1bf5 100644 --- a/fix50sp1/settlementinstructions/SettlementInstructions.go +++ b/fix50sp1/settlementinstructions/SettlementInstructions.go @@ -42,7 +42,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/settlementobligationreport/SettlementObligationReport.go b/fix50sp1/settlementobligationreport/SettlementObligationReport.go index b6bcc8a08..1afe0bb10 100644 --- a/fix50sp1/settlementobligationreport/SettlementObligationReport.go +++ b/fix50sp1/settlementobligationreport/SettlementObligationReport.go @@ -43,7 +43,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/tradecapturereport/TradeCaptureReport.go b/fix50sp1/tradecapturereport/TradeCaptureReport.go index d28389fbb..7238228d3 100644 --- a/fix50sp1/tradecapturereport/TradeCaptureReport.go +++ b/fix50sp1/tradecapturereport/TradeCaptureReport.go @@ -220,7 +220,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/tradecapturereportack/TradeCaptureReportAck.go b/fix50sp1/tradecapturereportack/TradeCaptureReportAck.go index 76c2f45ad..80607bca0 100644 --- a/fix50sp1/tradecapturereportack/TradeCaptureReportAck.go +++ b/fix50sp1/tradecapturereportack/TradeCaptureReportAck.go @@ -195,7 +195,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/tradecapturereportrequest/TradeCaptureReportRequest.go b/fix50sp1/tradecapturereportrequest/TradeCaptureReportRequest.go index 8278bbd69..69e98bdfd 100644 --- a/fix50sp1/tradecapturereportrequest/TradeCaptureReportRequest.go +++ b/fix50sp1/tradecapturereportrequest/TradeCaptureReportRequest.go @@ -111,7 +111,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/tradecapturereportrequestack/TradeCaptureReportRequestAck.go b/fix50sp1/tradecapturereportrequestack/TradeCaptureReportRequestAck.go index 95a4218e3..c743da3b5 100644 --- a/fix50sp1/tradecapturereportrequestack/TradeCaptureReportRequestAck.go +++ b/fix50sp1/tradecapturereportrequestack/TradeCaptureReportRequestAck.go @@ -63,7 +63,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/tradingsessionlist/TradingSessionList.go b/fix50sp1/tradingsessionlist/TradingSessionList.go index 7482279e4..8d0388215 100644 --- a/fix50sp1/tradingsessionlist/TradingSessionList.go +++ b/fix50sp1/tradingsessionlist/TradingSessionList.go @@ -28,7 +28,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/tradingsessionlistrequest/TradingSessionListRequest.go b/fix50sp1/tradingsessionlistrequest/TradingSessionListRequest.go index 70fa909d8..8cf290b8b 100644 --- a/fix50sp1/tradingsessionlistrequest/TradingSessionListRequest.go +++ b/fix50sp1/tradingsessionlistrequest/TradingSessionListRequest.go @@ -38,7 +38,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/tradingsessionlistupdatereport/TradingSessionListUpdateReport.go b/fix50sp1/tradingsessionlistupdatereport/TradingSessionListUpdateReport.go index d7309dd16..b3b6a8d99 100644 --- a/fix50sp1/tradingsessionlistupdatereport/TradingSessionListUpdateReport.go +++ b/fix50sp1/tradingsessionlistupdatereport/TradingSessionListUpdateReport.go @@ -30,7 +30,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/tradingsessionstatus/TradingSessionStatus.go b/fix50sp1/tradingsessionstatus/TradingSessionStatus.go index 284f00690..a9441d278 100644 --- a/fix50sp1/tradingsessionstatus/TradingSessionStatus.go +++ b/fix50sp1/tradingsessionstatus/TradingSessionStatus.go @@ -67,7 +67,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/tradingsessionstatusrequest/TradingSessionStatusRequest.go b/fix50sp1/tradingsessionstatusrequest/TradingSessionStatusRequest.go index 9306b6520..e028aae4b 100644 --- a/fix50sp1/tradingsessionstatusrequest/TradingSessionStatusRequest.go +++ b/fix50sp1/tradingsessionstatusrequest/TradingSessionStatusRequest.go @@ -38,7 +38,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/usernotification/UserNotification.go b/fix50sp1/usernotification/UserNotification.go index 7ad9318b6..91e2b0b08 100644 --- a/fix50sp1/usernotification/UserNotification.go +++ b/fix50sp1/usernotification/UserNotification.go @@ -31,7 +31,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/userrequest/UserRequest.go b/fix50sp1/userrequest/UserRequest.go index 4a2ce6ca9..5f58fe9ae 100644 --- a/fix50sp1/userrequest/UserRequest.go +++ b/fix50sp1/userrequest/UserRequest.go @@ -44,7 +44,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp1/userresponse/UserResponse.go b/fix50sp1/userresponse/UserResponse.go index f2a0a48a9..24dfe073c 100644 --- a/fix50sp1/userresponse/UserResponse.go +++ b/fix50sp1/userresponse/UserResponse.go @@ -28,7 +28,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/adjustedpositionreport/AdjustedPositionReport.go b/fix50sp2/adjustedpositionreport/AdjustedPositionReport.go index f0a735b64..05dfe757e 100644 --- a/fix50sp2/adjustedpositionreport/AdjustedPositionReport.go +++ b/fix50sp2/adjustedpositionreport/AdjustedPositionReport.go @@ -43,7 +43,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/advertisement/Advertisement.go b/fix50sp2/advertisement/Advertisement.go index 888d6f9f7..526402556 100644 --- a/fix50sp2/advertisement/Advertisement.go +++ b/fix50sp2/advertisement/Advertisement.go @@ -64,7 +64,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/allocationinstruction/AllocationInstruction.go b/fix50sp2/allocationinstruction/AllocationInstruction.go index bb9a15ca2..d9f6288ea 100644 --- a/fix50sp2/allocationinstruction/AllocationInstruction.go +++ b/fix50sp2/allocationinstruction/AllocationInstruction.go @@ -183,7 +183,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/allocationinstructionack/AllocationInstructionAck.go b/fix50sp2/allocationinstructionack/AllocationInstructionAck.go index eb07e0eb1..3e9bab989 100644 --- a/fix50sp2/allocationinstructionack/AllocationInstructionAck.go +++ b/fix50sp2/allocationinstructionack/AllocationInstructionAck.go @@ -55,7 +55,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/allocationinstructionalert/AllocationInstructionAlert.go b/fix50sp2/allocationinstructionalert/AllocationInstructionAlert.go index 5346e83ca..40fc2b758 100644 --- a/fix50sp2/allocationinstructionalert/AllocationInstructionAlert.go +++ b/fix50sp2/allocationinstructionalert/AllocationInstructionAlert.go @@ -180,7 +180,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/allocationreport/AllocationReport.go b/fix50sp2/allocationreport/AllocationReport.go index d19c78313..8043606c4 100644 --- a/fix50sp2/allocationreport/AllocationReport.go +++ b/fix50sp2/allocationreport/AllocationReport.go @@ -193,7 +193,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/allocationreportack/AllocationReportAck.go b/fix50sp2/allocationreportack/AllocationReportAck.go index c59fd96dd..3288e7cba 100644 --- a/fix50sp2/allocationreportack/AllocationReportAck.go +++ b/fix50sp2/allocationreportack/AllocationReportAck.go @@ -65,7 +65,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/applicationmessagereport/ApplicationMessageReport.go b/fix50sp2/applicationmessagereport/ApplicationMessageReport.go index 28f4e4e0e..c93915005 100644 --- a/fix50sp2/applicationmessagereport/ApplicationMessageReport.go +++ b/fix50sp2/applicationmessagereport/ApplicationMessageReport.go @@ -35,7 +35,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/applicationmessagerequest/ApplicationMessageRequest.go b/fix50sp2/applicationmessagerequest/ApplicationMessageRequest.go index 0e7e041c4..e4510d80d 100644 --- a/fix50sp2/applicationmessagerequest/ApplicationMessageRequest.go +++ b/fix50sp2/applicationmessagerequest/ApplicationMessageRequest.go @@ -36,7 +36,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/applicationmessagerequestack/ApplicationMessageRequestAck.go b/fix50sp2/applicationmessagerequestack/ApplicationMessageRequestAck.go index f8f2e1498..5a7ab0d38 100644 --- a/fix50sp2/applicationmessagerequestack/ApplicationMessageRequestAck.go +++ b/fix50sp2/applicationmessagerequestack/ApplicationMessageRequestAck.go @@ -42,7 +42,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/assignmentreport/AssignmentReport.go b/fix50sp2/assignmentreport/AssignmentReport.go index 432276075..cfd913478 100644 --- a/fix50sp2/assignmentreport/AssignmentReport.go +++ b/fix50sp2/assignmentreport/AssignmentReport.go @@ -87,7 +87,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/bidrequest/BidRequest.go b/fix50sp2/bidrequest/BidRequest.go index 064d51024..cb3f2dbc5 100644 --- a/fix50sp2/bidrequest/BidRequest.go +++ b/fix50sp2/bidrequest/BidRequest.go @@ -81,7 +81,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/bidresponse/BidResponse.go b/fix50sp2/bidresponse/BidResponse.go index 050238751..5ab94050a 100644 --- a/fix50sp2/bidresponse/BidResponse.go +++ b/fix50sp2/bidresponse/BidResponse.go @@ -27,7 +27,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/businessmessagereject/BusinessMessageReject.go b/fix50sp2/businessmessagereject/BusinessMessageReject.go index f114323f2..36c9e5b0e 100644 --- a/fix50sp2/businessmessagereject/BusinessMessageReject.go +++ b/fix50sp2/businessmessagereject/BusinessMessageReject.go @@ -40,7 +40,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/collateralassignment/CollateralAssignment.go b/fix50sp2/collateralassignment/CollateralAssignment.go index 48fdb7b8c..9f9772ff3 100644 --- a/fix50sp2/collateralassignment/CollateralAssignment.go +++ b/fix50sp2/collateralassignment/CollateralAssignment.go @@ -127,7 +127,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/collateralinquiry/CollateralInquiry.go b/fix50sp2/collateralinquiry/CollateralInquiry.go index 5edfcb834..afe555634 100644 --- a/fix50sp2/collateralinquiry/CollateralInquiry.go +++ b/fix50sp2/collateralinquiry/CollateralInquiry.go @@ -120,7 +120,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/collateralinquiryack/CollateralInquiryAck.go b/fix50sp2/collateralinquiryack/CollateralInquiryAck.go index 957209d82..2f57b4306 100644 --- a/fix50sp2/collateralinquiryack/CollateralInquiryAck.go +++ b/fix50sp2/collateralinquiryack/CollateralInquiryAck.go @@ -92,7 +92,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/collateralreport/CollateralReport.go b/fix50sp2/collateralreport/CollateralReport.go index 69e2cbf6c..a946e4003 100644 --- a/fix50sp2/collateralreport/CollateralReport.go +++ b/fix50sp2/collateralreport/CollateralReport.go @@ -129,7 +129,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/collateralrequest/CollateralRequest.go b/fix50sp2/collateralrequest/CollateralRequest.go index 024bf7f07..bfa222128 100644 --- a/fix50sp2/collateralrequest/CollateralRequest.go +++ b/fix50sp2/collateralrequest/CollateralRequest.go @@ -118,7 +118,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/collateralresponse/CollateralResponse.go b/fix50sp2/collateralresponse/CollateralResponse.go index 19c0c49a2..34b86cbce 100644 --- a/fix50sp2/collateralresponse/CollateralResponse.go +++ b/fix50sp2/collateralresponse/CollateralResponse.go @@ -122,7 +122,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/confirmation/Confirmation.go b/fix50sp2/confirmation/Confirmation.go index 3d2ff29ea..98d97689f 100644 --- a/fix50sp2/confirmation/Confirmation.go +++ b/fix50sp2/confirmation/Confirmation.go @@ -166,7 +166,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/confirmationack/ConfirmationAck.go b/fix50sp2/confirmationack/ConfirmationAck.go index f7fe28411..c75a44cb0 100644 --- a/fix50sp2/confirmationack/ConfirmationAck.go +++ b/fix50sp2/confirmationack/ConfirmationAck.go @@ -39,7 +39,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/confirmationrequest/ConfirmationRequest.go b/fix50sp2/confirmationrequest/ConfirmationRequest.go index afb474e03..fb5ead3ee 100644 --- a/fix50sp2/confirmationrequest/ConfirmationRequest.go +++ b/fix50sp2/confirmationrequest/ConfirmationRequest.go @@ -48,7 +48,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/contraryintentionreport/ContraryIntentionReport.go b/fix50sp2/contraryintentionreport/ContraryIntentionReport.go index 3534a68b7..719cfd387 100644 --- a/fix50sp2/contraryintentionreport/ContraryIntentionReport.go +++ b/fix50sp2/contraryintentionreport/ContraryIntentionReport.go @@ -52,7 +52,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/crossordercancelreplacerequest/CrossOrderCancelReplaceRequest.go b/fix50sp2/crossordercancelreplacerequest/CrossOrderCancelReplaceRequest.go index b608459d0..5fab3a54a 100644 --- a/fix50sp2/crossordercancelreplacerequest/CrossOrderCancelReplaceRequest.go +++ b/fix50sp2/crossordercancelreplacerequest/CrossOrderCancelReplaceRequest.go @@ -149,7 +149,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/crossordercancelrequest/CrossOrderCancelRequest.go b/fix50sp2/crossordercancelrequest/CrossOrderCancelRequest.go index 141be3e92..ff744bd63 100644 --- a/fix50sp2/crossordercancelrequest/CrossOrderCancelRequest.go +++ b/fix50sp2/crossordercancelrequest/CrossOrderCancelRequest.go @@ -50,7 +50,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/derivativesecuritylist/DerivativeSecurityList.go b/fix50sp2/derivativesecuritylist/DerivativeSecurityList.go index dec5bb242..728ebf827 100644 --- a/fix50sp2/derivativesecuritylist/DerivativeSecurityList.go +++ b/fix50sp2/derivativesecuritylist/DerivativeSecurityList.go @@ -49,7 +49,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/derivativesecuritylistrequest/DerivativeSecurityListRequest.go b/fix50sp2/derivativesecuritylistrequest/DerivativeSecurityListRequest.go index 009aa1c93..1417d606d 100644 --- a/fix50sp2/derivativesecuritylistrequest/DerivativeSecurityListRequest.go +++ b/fix50sp2/derivativesecuritylistrequest/DerivativeSecurityListRequest.go @@ -50,7 +50,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/derivativesecuritylistupdatereport/DerivativeSecurityListUpdateReport.go b/fix50sp2/derivativesecuritylistupdatereport/DerivativeSecurityListUpdateReport.go index 41bc4013e..fc8c04f73 100644 --- a/fix50sp2/derivativesecuritylistupdatereport/DerivativeSecurityListUpdateReport.go +++ b/fix50sp2/derivativesecuritylistupdatereport/DerivativeSecurityListUpdateReport.go @@ -47,7 +47,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/dontknowtrade/DontKnowTrade.go b/fix50sp2/dontknowtrade/DontKnowTrade.go index f16cf1ecb..4b109f954 100644 --- a/fix50sp2/dontknowtrade/DontKnowTrade.go +++ b/fix50sp2/dontknowtrade/DontKnowTrade.go @@ -52,7 +52,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/email/Email.go b/fix50sp2/email/Email.go index 3b15732f2..f234383bb 100644 --- a/fix50sp2/email/Email.go +++ b/fix50sp2/email/Email.go @@ -56,7 +56,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/executionacknowledgement/ExecutionAcknowledgement.go b/fix50sp2/executionacknowledgement/ExecutionAcknowledgement.go index 589aeab22..8ed177388 100644 --- a/fix50sp2/executionacknowledgement/ExecutionAcknowledgement.go +++ b/fix50sp2/executionacknowledgement/ExecutionAcknowledgement.go @@ -64,7 +64,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/executionreport/ExecutionReport.go b/fix50sp2/executionreport/ExecutionReport.go index acb7d2ac6..a3bba0d3d 100644 --- a/fix50sp2/executionreport/ExecutionReport.go +++ b/fix50sp2/executionreport/ExecutionReport.go @@ -388,7 +388,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/ioi/IOI.go b/fix50sp2/ioi/IOI.go index 522fa631d..b9261a2e5 100644 --- a/fix50sp2/ioi/IOI.go +++ b/fix50sp2/ioi/IOI.go @@ -91,7 +91,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/listcancelrequest/ListCancelRequest.go b/fix50sp2/listcancelrequest/ListCancelRequest.go index f2476a1b9..09f6eb0c5 100644 --- a/fix50sp2/listcancelrequest/ListCancelRequest.go +++ b/fix50sp2/listcancelrequest/ListCancelRequest.go @@ -38,7 +38,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/listexecute/ListExecute.go b/fix50sp2/listexecute/ListExecute.go index aad1ee4a8..0f9ad8df6 100644 --- a/fix50sp2/listexecute/ListExecute.go +++ b/fix50sp2/listexecute/ListExecute.go @@ -35,7 +35,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/liststatus/ListStatus.go b/fix50sp2/liststatus/ListStatus.go index 9848bb614..4c8791c23 100644 --- a/fix50sp2/liststatus/ListStatus.go +++ b/fix50sp2/liststatus/ListStatus.go @@ -50,7 +50,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/liststatusrequest/ListStatusRequest.go b/fix50sp2/liststatusrequest/ListStatusRequest.go index 1604b52d6..0780e2309 100644 --- a/fix50sp2/liststatusrequest/ListStatusRequest.go +++ b/fix50sp2/liststatusrequest/ListStatusRequest.go @@ -28,7 +28,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/liststrikeprice/ListStrikePrice.go b/fix50sp2/liststrikeprice/ListStrikePrice.go index 8cd73532b..f2a40c6ae 100644 --- a/fix50sp2/liststrikeprice/ListStrikePrice.go +++ b/fix50sp2/liststrikeprice/ListStrikePrice.go @@ -29,7 +29,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go b/fix50sp2/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go index ee7c3f5a4..e26cb0e12 100644 --- a/fix50sp2/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go +++ b/fix50sp2/marketdataincrementalrefresh/MarketDataIncrementalRefresh.go @@ -41,7 +41,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/marketdatarequest/MarketDataRequest.go b/fix50sp2/marketdatarequest/MarketDataRequest.go index b5a10f5db..72c9fc8e9 100644 --- a/fix50sp2/marketdatarequest/MarketDataRequest.go +++ b/fix50sp2/marketdatarequest/MarketDataRequest.go @@ -54,7 +54,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/marketdatarequestreject/MarketDataRequestReject.go b/fix50sp2/marketdatarequestreject/MarketDataRequestReject.go index 97225128c..915a77dbf 100644 --- a/fix50sp2/marketdatarequestreject/MarketDataRequestReject.go +++ b/fix50sp2/marketdatarequestreject/MarketDataRequestReject.go @@ -36,7 +36,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go b/fix50sp2/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go index 2536adf59..e8c8c7b6f 100644 --- a/fix50sp2/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go +++ b/fix50sp2/marketdatasnapshotfullrefresh/MarketDataSnapshotFullRefresh.go @@ -70,7 +70,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/marketdefinition/MarketDefinition.go b/fix50sp2/marketdefinition/MarketDefinition.go index 4b51bfb81..7f9fa1fba 100644 --- a/fix50sp2/marketdefinition/MarketDefinition.go +++ b/fix50sp2/marketdefinition/MarketDefinition.go @@ -62,7 +62,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/marketdefinitionrequest/MarketDefinitionRequest.go b/fix50sp2/marketdefinitionrequest/MarketDefinitionRequest.go index dfab79c66..1dbd23296 100644 --- a/fix50sp2/marketdefinitionrequest/MarketDefinitionRequest.go +++ b/fix50sp2/marketdefinitionrequest/MarketDefinitionRequest.go @@ -30,7 +30,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/marketdefinitionupdatereport/MarketDefinitionUpdateReport.go b/fix50sp2/marketdefinitionupdatereport/MarketDefinitionUpdateReport.go index 23ca9d44b..34211368c 100644 --- a/fix50sp2/marketdefinitionupdatereport/MarketDefinitionUpdateReport.go +++ b/fix50sp2/marketdefinitionupdatereport/MarketDefinitionUpdateReport.go @@ -64,7 +64,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/massquote/MassQuote.go b/fix50sp2/massquote/MassQuote.go index 753633577..198116995 100644 --- a/fix50sp2/massquote/MassQuote.go +++ b/fix50sp2/massquote/MassQuote.go @@ -44,7 +44,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/massquoteacknowledgement/MassQuoteAcknowledgement.go b/fix50sp2/massquoteacknowledgement/MassQuoteAcknowledgement.go index 92f96bca9..5e49d6478 100644 --- a/fix50sp2/massquoteacknowledgement/MassQuoteAcknowledgement.go +++ b/fix50sp2/massquoteacknowledgement/MassQuoteAcknowledgement.go @@ -55,7 +55,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/multilegordercancelreplace/MultilegOrderCancelReplace.go b/fix50sp2/multilegordercancelreplace/MultilegOrderCancelReplace.go index 792e675de..39dbdc7a4 100644 --- a/fix50sp2/multilegordercancelreplace/MultilegOrderCancelReplace.go +++ b/fix50sp2/multilegordercancelreplace/MultilegOrderCancelReplace.go @@ -206,7 +206,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/networkcounterpartysystemstatusrequest/NetworkCounterpartySystemStatusRequest.go b/fix50sp2/networkcounterpartysystemstatusrequest/NetworkCounterpartySystemStatusRequest.go index 5cb7eeabc..1f7e2e707 100644 --- a/fix50sp2/networkcounterpartysystemstatusrequest/NetworkCounterpartySystemStatusRequest.go +++ b/fix50sp2/networkcounterpartysystemstatusrequest/NetworkCounterpartySystemStatusRequest.go @@ -27,7 +27,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/networkcounterpartysystemstatusresponse/NetworkCounterpartySystemStatusResponse.go b/fix50sp2/networkcounterpartysystemstatusresponse/NetworkCounterpartySystemStatusResponse.go index fb55a1efa..ff885a912 100644 --- a/fix50sp2/networkcounterpartysystemstatusresponse/NetworkCounterpartySystemStatusResponse.go +++ b/fix50sp2/networkcounterpartysystemstatusresponse/NetworkCounterpartySystemStatusResponse.go @@ -31,7 +31,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/newordercross/NewOrderCross.go b/fix50sp2/newordercross/NewOrderCross.go index ec93d29a2..f3839ccc9 100644 --- a/fix50sp2/newordercross/NewOrderCross.go +++ b/fix50sp2/newordercross/NewOrderCross.go @@ -143,7 +143,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/neworderlist/NewOrderList.go b/fix50sp2/neworderlist/NewOrderList.go index 06efeca27..3d3cfff9d 100644 --- a/fix50sp2/neworderlist/NewOrderList.go +++ b/fix50sp2/neworderlist/NewOrderList.go @@ -64,7 +64,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/newordermultileg/NewOrderMultileg.go b/fix50sp2/newordermultileg/NewOrderMultileg.go index 87bf18313..30a830a3d 100644 --- a/fix50sp2/newordermultileg/NewOrderMultileg.go +++ b/fix50sp2/newordermultileg/NewOrderMultileg.go @@ -204,7 +204,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/newordersingle/NewOrderSingle.go b/fix50sp2/newordersingle/NewOrderSingle.go index c097bd313..f9f99cc8a 100644 --- a/fix50sp2/newordersingle/NewOrderSingle.go +++ b/fix50sp2/newordersingle/NewOrderSingle.go @@ -222,7 +222,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/news/News.go b/fix50sp2/news/News.go index 6008dd0b6..5d2766e64 100644 --- a/fix50sp2/news/News.go +++ b/fix50sp2/news/News.go @@ -68,7 +68,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/ordercancelreject/OrderCancelReject.go b/fix50sp2/ordercancelreject/OrderCancelReject.go index bf13ab114..3fbf189d3 100644 --- a/fix50sp2/ordercancelreject/OrderCancelReject.go +++ b/fix50sp2/ordercancelreject/OrderCancelReject.go @@ -63,7 +63,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/ordercancelreplacerequest/OrderCancelReplaceRequest.go b/fix50sp2/ordercancelreplacerequest/OrderCancelReplaceRequest.go index 77fe1cf77..0ea89b06d 100644 --- a/fix50sp2/ordercancelreplacerequest/OrderCancelReplaceRequest.go +++ b/fix50sp2/ordercancelreplacerequest/OrderCancelReplaceRequest.go @@ -215,7 +215,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/ordercancelrequest/OrderCancelRequest.go b/fix50sp2/ordercancelrequest/OrderCancelRequest.go index 86048113a..cc5f996c8 100644 --- a/fix50sp2/ordercancelrequest/OrderCancelRequest.go +++ b/fix50sp2/ordercancelrequest/OrderCancelRequest.go @@ -68,7 +68,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/ordermassactionreport/OrderMassActionReport.go b/fix50sp2/ordermassactionreport/OrderMassActionReport.go index fa6af3def..82a977dc3 100644 --- a/fix50sp2/ordermassactionreport/OrderMassActionReport.go +++ b/fix50sp2/ordermassactionreport/OrderMassActionReport.go @@ -73,7 +73,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/ordermassactionrequest/OrderMassActionRequest.go b/fix50sp2/ordermassactionrequest/OrderMassActionRequest.go index 57a06b820..a22cf6955 100644 --- a/fix50sp2/ordermassactionrequest/OrderMassActionRequest.go +++ b/fix50sp2/ordermassactionrequest/OrderMassActionRequest.go @@ -59,7 +59,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/ordermasscancelreport/OrderMassCancelReport.go b/fix50sp2/ordermasscancelreport/OrderMassCancelReport.go index ccf71ca71..2b351f741 100644 --- a/fix50sp2/ordermasscancelreport/OrderMassCancelReport.go +++ b/fix50sp2/ordermasscancelreport/OrderMassCancelReport.go @@ -75,7 +75,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/ordermasscancelrequest/OrderMassCancelRequest.go b/fix50sp2/ordermasscancelrequest/OrderMassCancelRequest.go index 8f64e8ed5..4671297db 100644 --- a/fix50sp2/ordermasscancelrequest/OrderMassCancelRequest.go +++ b/fix50sp2/ordermasscancelrequest/OrderMassCancelRequest.go @@ -57,7 +57,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/ordermassstatusrequest/OrderMassStatusRequest.go b/fix50sp2/ordermassstatusrequest/OrderMassStatusRequest.go index 8e66e2195..cb83fdf02 100644 --- a/fix50sp2/ordermassstatusrequest/OrderMassStatusRequest.go +++ b/fix50sp2/ordermassstatusrequest/OrderMassStatusRequest.go @@ -46,7 +46,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/orderstatusrequest/OrderStatusRequest.go b/fix50sp2/orderstatusrequest/OrderStatusRequest.go index 5b38761d3..2ff885bb8 100644 --- a/fix50sp2/orderstatusrequest/OrderStatusRequest.go +++ b/fix50sp2/orderstatusrequest/OrderStatusRequest.go @@ -48,7 +48,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/partydetailslistreport/PartyDetailsListReport.go b/fix50sp2/partydetailslistreport/PartyDetailsListReport.go index e6cbc8c1f..29aea8e90 100644 --- a/fix50sp2/partydetailslistreport/PartyDetailsListReport.go +++ b/fix50sp2/partydetailslistreport/PartyDetailsListReport.go @@ -42,7 +42,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/partydetailslistrequest/PartyDetailsListRequest.go b/fix50sp2/partydetailslistrequest/PartyDetailsListRequest.go index 601dfa1ee..7a4a863de 100644 --- a/fix50sp2/partydetailslistrequest/PartyDetailsListRequest.go +++ b/fix50sp2/partydetailslistrequest/PartyDetailsListRequest.go @@ -42,7 +42,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/positionmaintenancereport/PositionMaintenanceReport.go b/fix50sp2/positionmaintenancereport/PositionMaintenanceReport.go index 4c73857d6..cad4c380b 100644 --- a/fix50sp2/positionmaintenancereport/PositionMaintenanceReport.go +++ b/fix50sp2/positionmaintenancereport/PositionMaintenanceReport.go @@ -90,7 +90,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/positionmaintenancerequest/PositionMaintenanceRequest.go b/fix50sp2/positionmaintenancerequest/PositionMaintenanceRequest.go index 2507dd4a4..9ef93ab57 100644 --- a/fix50sp2/positionmaintenancerequest/PositionMaintenanceRequest.go +++ b/fix50sp2/positionmaintenancerequest/PositionMaintenanceRequest.go @@ -84,7 +84,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/positionreport/PositionReport.go b/fix50sp2/positionreport/PositionReport.go index 53574c09f..5835e60d7 100644 --- a/fix50sp2/positionreport/PositionReport.go +++ b/fix50sp2/positionreport/PositionReport.go @@ -97,7 +97,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/quote/Quote.go b/fix50sp2/quote/Quote.go index fac526f00..79b096942 100644 --- a/fix50sp2/quote/Quote.go +++ b/fix50sp2/quote/Quote.go @@ -170,7 +170,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/quotecancel/QuoteCancel.go b/fix50sp2/quotecancel/QuoteCancel.go index 3881bbe9b..a3688aa5e 100644 --- a/fix50sp2/quotecancel/QuoteCancel.go +++ b/fix50sp2/quotecancel/QuoteCancel.go @@ -51,7 +51,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/quoterequest/QuoteRequest.go b/fix50sp2/quoterequest/QuoteRequest.go index 6e25c24fb..d85c570f8 100644 --- a/fix50sp2/quoterequest/QuoteRequest.go +++ b/fix50sp2/quoterequest/QuoteRequest.go @@ -50,7 +50,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/quoterequestreject/QuoteRequestReject.go b/fix50sp2/quoterequestreject/QuoteRequestReject.go index 723be7ea2..1d7d00aef 100644 --- a/fix50sp2/quoterequestreject/QuoteRequestReject.go +++ b/fix50sp2/quoterequestreject/QuoteRequestReject.go @@ -44,7 +44,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/quoteresponse/QuoteResponse.go b/fix50sp2/quoteresponse/QuoteResponse.go index 2996d5b43..aaf9cc5b1 100644 --- a/fix50sp2/quoteresponse/QuoteResponse.go +++ b/fix50sp2/quoteresponse/QuoteResponse.go @@ -163,7 +163,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/quotestatusreport/QuoteStatusReport.go b/fix50sp2/quotestatusreport/QuoteStatusReport.go index 24c4bfb13..671e6be3e 100644 --- a/fix50sp2/quotestatusreport/QuoteStatusReport.go +++ b/fix50sp2/quotestatusreport/QuoteStatusReport.go @@ -172,7 +172,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/quotestatusrequest/QuoteStatusRequest.go b/fix50sp2/quotestatusrequest/QuoteStatusRequest.go index 5add94dc3..45a31346d 100644 --- a/fix50sp2/quotestatusrequest/QuoteStatusRequest.go +++ b/fix50sp2/quotestatusrequest/QuoteStatusRequest.go @@ -54,7 +54,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/registrationinstructions/RegistrationInstructions.go b/fix50sp2/registrationinstructions/RegistrationInstructions.go index 349d35760..9234e2e9d 100644 --- a/fix50sp2/registrationinstructions/RegistrationInstructions.go +++ b/fix50sp2/registrationinstructions/RegistrationInstructions.go @@ -47,7 +47,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/registrationinstructionsresponse/RegistrationInstructionsResponse.go b/fix50sp2/registrationinstructionsresponse/RegistrationInstructionsResponse.go index 3907de764..aa6f219a2 100644 --- a/fix50sp2/registrationinstructionsresponse/RegistrationInstructionsResponse.go +++ b/fix50sp2/registrationinstructionsresponse/RegistrationInstructionsResponse.go @@ -41,7 +41,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/requestforpositions/RequestForPositions.go b/fix50sp2/requestforpositions/RequestForPositions.go index 8eb2039bb..5dbde45d8 100644 --- a/fix50sp2/requestforpositions/RequestForPositions.go +++ b/fix50sp2/requestforpositions/RequestForPositions.go @@ -72,7 +72,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/requestforpositionsack/RequestForPositionsAck.go b/fix50sp2/requestforpositionsack/RequestForPositionsAck.go index 38141ed65..f8ebee954 100644 --- a/fix50sp2/requestforpositionsack/RequestForPositionsAck.go +++ b/fix50sp2/requestforpositionsack/RequestForPositionsAck.go @@ -76,7 +76,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/rfqrequest/RFQRequest.go b/fix50sp2/rfqrequest/RFQRequest.go index c58da2eb0..bb5a9764a 100644 --- a/fix50sp2/rfqrequest/RFQRequest.go +++ b/fix50sp2/rfqrequest/RFQRequest.go @@ -32,7 +32,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/securitydefinition/SecurityDefinition.go b/fix50sp2/securitydefinition/SecurityDefinition.go index 970f53320..47c66e8f1 100644 --- a/fix50sp2/securitydefinition/SecurityDefinition.go +++ b/fix50sp2/securitydefinition/SecurityDefinition.go @@ -70,7 +70,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/securitydefinitionrequest/SecurityDefinitionRequest.go b/fix50sp2/securitydefinitionrequest/SecurityDefinitionRequest.go index 2a476c5a1..337f11060 100644 --- a/fix50sp2/securitydefinitionrequest/SecurityDefinitionRequest.go +++ b/fix50sp2/securitydefinitionrequest/SecurityDefinitionRequest.go @@ -65,7 +65,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/securitydefinitionupdatereport/SecurityDefinitionUpdateReport.go b/fix50sp2/securitydefinitionupdatereport/SecurityDefinitionUpdateReport.go index 6aa2c0878..0bc74d2ba 100644 --- a/fix50sp2/securitydefinitionupdatereport/SecurityDefinitionUpdateReport.go +++ b/fix50sp2/securitydefinitionupdatereport/SecurityDefinitionUpdateReport.go @@ -72,7 +72,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/securitylist/SecurityList.go b/fix50sp2/securitylist/SecurityList.go index f12a8e8dc..1799b45f5 100644 --- a/fix50sp2/securitylist/SecurityList.go +++ b/fix50sp2/securitylist/SecurityList.go @@ -61,7 +61,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/securitylistrequest/SecurityListRequest.go b/fix50sp2/securitylistrequest/SecurityListRequest.go index 4351b0818..8898c992f 100644 --- a/fix50sp2/securitylistrequest/SecurityListRequest.go +++ b/fix50sp2/securitylistrequest/SecurityListRequest.go @@ -63,7 +63,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/securitylistupdatereport/SecurityListUpdateReport.go b/fix50sp2/securitylistupdatereport/SecurityListUpdateReport.go index 5f16c05df..e9f89fdc4 100644 --- a/fix50sp2/securitylistupdatereport/SecurityListUpdateReport.go +++ b/fix50sp2/securitylistupdatereport/SecurityListUpdateReport.go @@ -65,7 +65,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/securitystatus/SecurityStatus.go b/fix50sp2/securitystatus/SecurityStatus.go index 1e6b3a134..ae41e786f 100644 --- a/fix50sp2/securitystatus/SecurityStatus.go +++ b/fix50sp2/securitystatus/SecurityStatus.go @@ -90,7 +90,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/securitystatusrequest/SecurityStatusRequest.go b/fix50sp2/securitystatusrequest/SecurityStatusRequest.go index 263f7973c..09fd570a5 100644 --- a/fix50sp2/securitystatusrequest/SecurityStatusRequest.go +++ b/fix50sp2/securitystatusrequest/SecurityStatusRequest.go @@ -46,7 +46,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/securitytyperequest/SecurityTypeRequest.go b/fix50sp2/securitytyperequest/SecurityTypeRequest.go index f212f14ae..4c45251f5 100644 --- a/fix50sp2/securitytyperequest/SecurityTypeRequest.go +++ b/fix50sp2/securitytyperequest/SecurityTypeRequest.go @@ -42,7 +42,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/securitytypes/SecurityTypes.go b/fix50sp2/securitytypes/SecurityTypes.go index 2d43b0cd8..faefa9b39 100644 --- a/fix50sp2/securitytypes/SecurityTypes.go +++ b/fix50sp2/securitytypes/SecurityTypes.go @@ -52,7 +52,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/settlementinstructionrequest/SettlementInstructionRequest.go b/fix50sp2/settlementinstructionrequest/SettlementInstructionRequest.go index dcc757bf1..9c3d92cfa 100644 --- a/fix50sp2/settlementinstructionrequest/SettlementInstructionRequest.go +++ b/fix50sp2/settlementinstructionrequest/SettlementInstructionRequest.go @@ -54,7 +54,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/settlementinstructions/SettlementInstructions.go b/fix50sp2/settlementinstructions/SettlementInstructions.go index 00d53eac9..2661bc567 100644 --- a/fix50sp2/settlementinstructions/SettlementInstructions.go +++ b/fix50sp2/settlementinstructions/SettlementInstructions.go @@ -42,7 +42,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/settlementobligationreport/SettlementObligationReport.go b/fix50sp2/settlementobligationreport/SettlementObligationReport.go index 0d2f73648..8c34be964 100644 --- a/fix50sp2/settlementobligationreport/SettlementObligationReport.go +++ b/fix50sp2/settlementobligationreport/SettlementObligationReport.go @@ -43,7 +43,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/streamassignmentreport/StreamAssignmentReport.go b/fix50sp2/streamassignmentreport/StreamAssignmentReport.go index b97c6702a..602d9de2f 100644 --- a/fix50sp2/streamassignmentreport/StreamAssignmentReport.go +++ b/fix50sp2/streamassignmentreport/StreamAssignmentReport.go @@ -29,7 +29,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/streamassignmentreportack/StreamAssignmentReportACK.go b/fix50sp2/streamassignmentreportack/StreamAssignmentReportACK.go index 6617b9b72..21e1023b9 100644 --- a/fix50sp2/streamassignmentreportack/StreamAssignmentReportACK.go +++ b/fix50sp2/streamassignmentreportack/StreamAssignmentReportACK.go @@ -32,7 +32,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/streamassignmentrequest/StreamAssignmentRequest.go b/fix50sp2/streamassignmentrequest/StreamAssignmentRequest.go index 32c4ab9e0..342660cb5 100644 --- a/fix50sp2/streamassignmentrequest/StreamAssignmentRequest.go +++ b/fix50sp2/streamassignmentrequest/StreamAssignmentRequest.go @@ -27,7 +27,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/tradecapturereport/TradeCaptureReport.go b/fix50sp2/tradecapturereport/TradeCaptureReport.go index 6aef39858..af46958ed 100644 --- a/fix50sp2/tradecapturereport/TradeCaptureReport.go +++ b/fix50sp2/tradecapturereport/TradeCaptureReport.go @@ -219,7 +219,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/tradecapturereportack/TradeCaptureReportAck.go b/fix50sp2/tradecapturereportack/TradeCaptureReportAck.go index 19b139a58..5b4afdbb5 100644 --- a/fix50sp2/tradecapturereportack/TradeCaptureReportAck.go +++ b/fix50sp2/tradecapturereportack/TradeCaptureReportAck.go @@ -199,7 +199,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/tradecapturereportrequest/TradeCaptureReportRequest.go b/fix50sp2/tradecapturereportrequest/TradeCaptureReportRequest.go index 629411448..7a54beb6f 100644 --- a/fix50sp2/tradecapturereportrequest/TradeCaptureReportRequest.go +++ b/fix50sp2/tradecapturereportrequest/TradeCaptureReportRequest.go @@ -111,7 +111,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/tradecapturereportrequestack/TradeCaptureReportRequestAck.go b/fix50sp2/tradecapturereportrequestack/TradeCaptureReportRequestAck.go index 53489c9bb..9bb0dbc29 100644 --- a/fix50sp2/tradecapturereportrequestack/TradeCaptureReportRequestAck.go +++ b/fix50sp2/tradecapturereportrequestack/TradeCaptureReportRequestAck.go @@ -63,7 +63,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/tradingsessionlist/TradingSessionList.go b/fix50sp2/tradingsessionlist/TradingSessionList.go index 3fc56a668..95af466ad 100644 --- a/fix50sp2/tradingsessionlist/TradingSessionList.go +++ b/fix50sp2/tradingsessionlist/TradingSessionList.go @@ -28,7 +28,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/tradingsessionlistrequest/TradingSessionListRequest.go b/fix50sp2/tradingsessionlistrequest/TradingSessionListRequest.go index e8f112e26..4942ee5d8 100644 --- a/fix50sp2/tradingsessionlistrequest/TradingSessionListRequest.go +++ b/fix50sp2/tradingsessionlistrequest/TradingSessionListRequest.go @@ -38,7 +38,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/tradingsessionlistupdatereport/TradingSessionListUpdateReport.go b/fix50sp2/tradingsessionlistupdatereport/TradingSessionListUpdateReport.go index 7bf50c594..b0e66ece3 100644 --- a/fix50sp2/tradingsessionlistupdatereport/TradingSessionListUpdateReport.go +++ b/fix50sp2/tradingsessionlistupdatereport/TradingSessionListUpdateReport.go @@ -28,7 +28,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/tradingsessionstatus/TradingSessionStatus.go b/fix50sp2/tradingsessionstatus/TradingSessionStatus.go index 220fa79cf..eb6e25481 100644 --- a/fix50sp2/tradingsessionstatus/TradingSessionStatus.go +++ b/fix50sp2/tradingsessionstatus/TradingSessionStatus.go @@ -67,7 +67,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/tradingsessionstatusrequest/TradingSessionStatusRequest.go b/fix50sp2/tradingsessionstatusrequest/TradingSessionStatusRequest.go index e7f1d3445..9722a1723 100644 --- a/fix50sp2/tradingsessionstatusrequest/TradingSessionStatusRequest.go +++ b/fix50sp2/tradingsessionstatusrequest/TradingSessionStatusRequest.go @@ -38,7 +38,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/usernotification/UserNotification.go b/fix50sp2/usernotification/UserNotification.go index 8d554b9b1..95bacb406 100644 --- a/fix50sp2/usernotification/UserNotification.go +++ b/fix50sp2/usernotification/UserNotification.go @@ -31,7 +31,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/userrequest/UserRequest.go b/fix50sp2/userrequest/UserRequest.go index 401d13a14..188a84677 100644 --- a/fix50sp2/userrequest/UserRequest.go +++ b/fix50sp2/userrequest/UserRequest.go @@ -44,7 +44,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fix50sp2/userresponse/UserResponse.go b/fix50sp2/userresponse/UserResponse.go index 1c7d8cf60..c06cc50b0 100644 --- a/fix50sp2/userresponse/UserResponse.go +++ b/fix50sp2/userresponse/UserResponse.go @@ -28,7 +28,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fixt11/heartbeat/Heartbeat.go b/fixt11/heartbeat/Heartbeat.go index fec46b7b9..48c308a4f 100644 --- a/fixt11/heartbeat/Heartbeat.go +++ b/fixt11/heartbeat/Heartbeat.go @@ -22,7 +22,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fixt11/logon/Logon.go b/fixt11/logon/Logon.go index adc3beb07..dd1a77d45 100644 --- a/fixt11/logon/Logon.go +++ b/fixt11/logon/Logon.go @@ -45,7 +45,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fixt11/logout/Logout.go b/fixt11/logout/Logout.go index 604c36425..5f1f90133 100644 --- a/fixt11/logout/Logout.go +++ b/fixt11/logout/Logout.go @@ -26,7 +26,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fixt11/reject/Reject.go b/fixt11/reject/Reject.go index 94eb92061..75a756af9 100644 --- a/fixt11/reject/Reject.go +++ b/fixt11/reject/Reject.go @@ -34,7 +34,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fixt11/resendrequest/ResendRequest.go b/fixt11/resendrequest/ResendRequest.go index f62dc43c5..d05089009 100644 --- a/fixt11/resendrequest/ResendRequest.go +++ b/fixt11/resendrequest/ResendRequest.go @@ -24,7 +24,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fixt11/sequencereset/SequenceReset.go b/fixt11/sequencereset/SequenceReset.go index ccc59d804..9e2f6254d 100644 --- a/fixt11/sequencereset/SequenceReset.go +++ b/fixt11/sequencereset/SequenceReset.go @@ -24,7 +24,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/fixt11/testrequest/TestRequest.go b/fixt11/testrequest/TestRequest.go index 7e7d1fdcc..ef5e5cf70 100644 --- a/fixt11/testrequest/TestRequest.go +++ b/fixt11/testrequest/TestRequest.go @@ -22,7 +22,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) } //A RouteOut is the callback type that should be implemented for routing Message type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError -//Route returns the beginstring, message type, and MessageRoute for this Mesage type +//Route returns the beginstring, message type, and MessageRoute for this Message type func Route(router RouteOut) (string, string, quickfix.MessageRoute) { r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError { m := new(Message) diff --git a/message_router.go b/message_router.go index 0aa4a158c..32f710add 100644 --- a/message_router.go +++ b/message_router.go @@ -9,7 +9,7 @@ type routeKey struct { MsgType string } -//A MessageRoute is a function can process a fromApp/fromAdmin callback +//A MessageRoute is a function that can process a fromApp/fromAdmin callback type MessageRoute func(msg Message, sessionID SessionID) MessageRejectError //A MessageRouter is a mutex for MessageRoutes