using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TradeIdeas.MarketDataProxy { public class Globals { // These are various miscelaneous items which are shared by many connections. There could be multiple // values for these, different connections having differnt values. But it is a lot easier to share these. // For one thing, some of them can be read from the command line. public static string downStreamUsername; public static string downStreamPassword; public static SymbolListenerThread symbolListenerThread; public static int sendAllCounter; //for debug public static int sendFunctionCounter; //for debug public static int TeletraderConnectionCheckCounter; } }