public void GetTickGeneric(TickGeneric tg) { //throw new NotImplementedException(); }
public void ReadtickGeneric(int tickerId, int field, double value) { TickGeneric tg = new TickGeneric() { Ticker_Id = tickerId, Field = field, Value = value }; _strategyBacklog[tickerId].ForEach(t => Task.Run(() => t.GetTickGeneric(tg))); }