Beispiel #1
0
        public async void AddService(IChatTrendServiceEntry serviceEntry)
        {
            IChatTrendService service = await serviceEntry.GetNewService();

            timers.TryAdd(service, new Timer(timerCallback, service, 1000, (int)service.UpdateInterval.TotalMilliseconds));
            registeredServices.Add(service);
        }