comparison Implab/Components/ExecutionState.cs @ 152:240aa6994018 v2

component model refactoring
author cin
date Thu, 11 Feb 2016 01:56:27 +0300
parents
children 2dcdee4c0810
comparison
equal deleted inserted replaced
151:ec91a6dfa5b3 152:240aa6994018
1 namespace Implab.Components {
2 public enum ExecutionState {
3 Uninitialized,
4 Initial,
5 Starting,
6 Running,
7 Stopping,
8 Stopped,
9 Disposed,
10 Failed
11 }
12 }