Mercurial > pub > ImplabNet
view Implab/Components/ExecutionState.cs @ 156:97fbbf816844 v2
Promises: SignalXXX methods merged into SignalHandler method.
Components: RunnableComponent In progress
author | cin |
---|---|
date | Mon, 15 Feb 2016 04:22:15 +0300 |
parents | 2dcdee4c0810 |
children | d6a8cba73acc |
line wrap: on
line source
namespace Implab.Components { public enum ExecutionState { Reserved = 0, Uninitialized, Ready, Starting, Running, Stopping, Stopped, Disposed, Failed } }