private TradingContractDictionary() { tickersList = new ThreadSafeUpdatingList <TradeTicker>(lockIntervalMils, updateIntervalMils, TickersUpdateRoutine); }
private DictionaryManager() { groupMarkupList = new ThreadSafeUpdatingList <GroupMarkup>(lockIntervalMils, updateIntervalMils, GroupMarkupUpdateRoutine); userList = new ThreadSafeUpdatingList <PlatformUser>(lockIntervalMils, updateIntervalMils, UserUpdateRoutine); brokerRepository = new BrokerRepository(); }
private DictionaryManager() { groupMarkupList = new ThreadSafeUpdatingList<GroupMarkup>(lockIntervalMils, updateIntervalMils, GroupMarkupUpdateRoutine); userList = new ThreadSafeUpdatingList<PlatformUser>(lockIntervalMils, updateIntervalMils, UserUpdateRoutine); brokerRepository = new BrokerRepository(); }
// ReSharper restore InconsistentNaming private AccountRepository() { accountGroupsList = new ThreadSafeUpdatingList <AccountGroup>(lockIntervalMils, updateIntervalMils, AccountGroupsUpdateRoutine); accountsList = new ThreadSafeUpdatingList <Account>(lockIntervalMils, updateFastIntervalMils, AccountsUpdateRoutine); channelsList = new ThreadSafeUpdatingList <CHANNEL>(lockIntervalMils, updateIntervalMils, ChannelsUpdateRoutine); }
// ReSharper restore InconsistentNaming private AccountRepository() { accountGroupsList = new ThreadSafeUpdatingList<AccountGroup>(lockIntervalMils, updateIntervalMils, AccountGroupsUpdateRoutine); accountsList = new ThreadSafeUpdatingList<Account>(lockIntervalMils, updateFastIntervalMils, AccountsUpdateRoutine); channelsList = new ThreadSafeUpdatingList<CHANNEL>(lockIntervalMils, updateIntervalMils, ChannelsUpdateRoutine); }