Mercurial > pub > ImplabNet
comparison Implab.Diagnostics.Interactive/InteractiveListener.cs @ 66:790e8a997d30
Refactoring
author | cin |
---|---|
date | Thu, 14 Aug 2014 18:08:09 +0400 |
parents | d9d794b61bb9 |
children | abe260860bd6 |
comparison
equal
deleted
inserted
replaced
65:653c4e04968b | 66:790e8a997d30 |
---|---|
14 TraceForm m_form; | 14 TraceForm m_form; |
15 | 15 |
16 SynchronizationContext m_syncGuiThread; | 16 SynchronizationContext m_syncGuiThread; |
17 readonly Promise<object> m_guiStarted = new Promise<object>(); | 17 readonly Promise<object> m_guiStarted = new Promise<object>(); |
18 | 18 |
19 readonly IPromiseBase m_guiFinished; | 19 readonly IPromise m_guiFinished; |
20 readonly IPromiseBase m_workerFinished = new Promise<object>(); | 20 readonly IPromise m_workerFinished = new Promise<object>(); |
21 | 21 |
22 readonly MTQueue<TraceViewItem> m_queue = new MTQueue<TraceViewItem>(); | 22 readonly MTQueue<TraceViewItem> m_queue = new MTQueue<TraceViewItem>(); |
23 readonly AutoResetEvent m_queueEvent = new AutoResetEvent(false); | 23 readonly AutoResetEvent m_queueEvent = new AutoResetEvent(false); |
24 | 24 |
25 int m_queueLength; | 25 int m_queueLength; |