Esempio n. 1
0
        public static void Start()
        {
            LogUtility.Log("Starting EventQueueService...");

            service = new EventQueueService();
            service.RunJob();
        }
Esempio n. 2
0
        public static void Stop()
        {
            LogUtility.Log("Stopping EventQueueService...");

            if (service != null)
            {
                service.stopped = true;
                service         = null;
            }
        }