[Quickfix-users] need for SwingUtilities in trading system application?
Brought to you by:
orenmnero
|
From: Murray S. <mu...@sm...> - 2004-12-28 12:51:41
|
Hi,
I notice that you are using the SwingUtilities function invokeLater to invo=
ke=20
the run function of doFromApp in your java example program =20
BanzaiApplication.java
public void fromApp(quickfix.Message message, SessionID sessionID)
throws FieldNotFound, IncorrectDataFormat, IncorrectTagValue,=20
UnsupportedMessageType {
try {
SwingUtilities.invokeLater(new doFromApp(message, sessionID));
} catch(Exception e) {}
}
I am trying to build a version of the Application that works in a non-graph=
ic=20
environment and so would like to avoid the dependency on SwingUtilities. Is=
=20
there an easy way to do the asynchronous invokation of the run method witho=
ut=20
using the SwingUtilities.invokeLater function?
Thanks,
murray smigel
|