Mercurial > pub > ImplabNet
comparison Implab/Components/RunnableComponent.cs @ 202:2651cb9a4250 v2
Implemented PollingRunnableComponent
author | cin |
---|---|
date | Tue, 18 Oct 2016 01:03:49 +0300 |
parents | 40d7fed4a09e |
children | 4d9830a9bbb8 |
comparison
equal
deleted
inserted
replaced
201:d7cd7a83189a | 202:2651cb9a4250 |
---|---|
208 } | 208 } |
209 } | 209 } |
210 | 210 |
211 public ExecutionState State { | 211 public ExecutionState State { |
212 get { | 212 get { |
213 return m_stateMachine.State; | 213 lock (m_stateMachine) |
214 return m_stateMachine.State; | |
214 } | 215 } |
215 } | 216 } |
216 | 217 |
217 public Exception LastError { | 218 public Exception LastError { |
218 get { | 219 get { |