Example #1
0
        public void ProcessImagePush()
        {
            threadPush = new System.Threading.Thread(th =>
            {
                var data = new DynData.LKQ.LKQImageClient();

                while (true)
                {
                    clsLog.LogInfo("Starting Image Push thread...");

                    data.PushImageData();

                    clsLog.LogInfo("Sleeping Image Push thread...");
                    System.Threading.Thread.Sleep(2000);
                }
            });
            threadPush.Start();
        }