- Timestamp:
- 04/16/13 13:13:41 (12 years ago)
- Location:
- branches/OaaS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OaaS
- Property svn:ignore
-
old new 21 21 protoc.exe 22 22 _ReSharper.HeuristicLab 3.3 Tests 23 Google.ProtocolBuffers-2.4.1.473.dll 23 24 packages
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/OaaS/HeuristicLab.Clients.Hive/3.3/JobResultPoller.cs
r7259 r9363 82 82 83 83 private void RunPolling() { 84 IsPolling = true; 84 85 while (true) { 85 IsPolling = true;86 86 try { 87 87 waitHandle = new AutoResetEvent(false); … … 92 92 waitHandle.WaitOne(Interval); 93 93 } 94 94 95 waitHandle.Close(); 96 IsPolling = false; 97 return; 95 98 } 96 99 catch (Exception e) { 97 100 OnExceptionOccured(e); 98 } finally { 99 IsPolling = false; 101 if (!autoResumeOnException) { 102 waitHandle.Close(); 103 IsPolling = false; 104 return; 105 } 100 106 } 101 if (stopRequested) return;102 if (!autoResumeOnException) return;103 107 } 104 108 }
Note: See TracChangeset
for help on using the changeset viewer.