Open gowthamnatarajan opened 6 months ago
Hello @gowthamnatarajan
To use the default application-wide singleton instance of DXFeed, you must pre-configure the address via SystemProperties, or the dxfeed.properties file. Take a look at this example.
Directly from the code, you can do it like this:
SystemProperty.SetProperty("dxfeed.address", "demo.dxfeed.com:7300");
var sub = DXFeed.GetInstance().CreateSubscription(typeof(Quote));
Hi,
Even if I use the default DXFeed method, my event listener never gets called back. What could be the reason?
I have a breakpoint inside the Event listener and the breakpoint never gets triggered.