Example #1
0
 private void bwAsync_Start(ProcessingType type)
 {
     if (!mThread.IsBusy)
     {
         mThread.RunWorkerAsync(type);
     }
 }
Example #2
0
 private void bwAsync_Start(ProcessingType type)
 {
     if (!m_AsyncWorker.IsBusy)
     {
         m_AsyncWorker.RunWorkerAsync(type);
     }
 }
Example #3
0
 private void bwAsync_Start()
 {
     if (!m_BackgroundWorker.IsBusy)
     {
         m_BackgroundWorker.RunWorkerAsync();
     }
 }
Example #4
0
 private void bwAsync_Start(ProcessingType type)
 {
     if (!mThread.IsBusy)
     {
         if (type == ProcessingType.LoadData)
         {
             DataProgress.Visible = DataProgress.IsRunning = true;
         }
         mThread.RunWorkerAsync(type);
     }
 }
Example #5
0
 private void bwAsync_Start()
 {
     if (!m_BackgroundWorker.IsBusy)
     {
         m_BackgroundWorker.RunWorkerAsync();
     }
     else
     {
         SanitaLogEx.e(TAG, "Task busy...");
     }
 }