annotate Implab/Components/StateChangeEventArgs.cs @ 206:86b61d53b7db v2

Слияние
author cin
date Tue, 25 Oct 2016 17:40:45 +0300
parents 8200ab154c8a
children 558f34b2fb50
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
205
8200ab154c8a Added ResetState to RunnableComponent to reset in case of failure
cin
parents:
diff changeset
1 using System;
8200ab154c8a Added ResetState to RunnableComponent to reset in case of failure
cin
parents:
diff changeset
2
8200ab154c8a Added ResetState to RunnableComponent to reset in case of failure
cin
parents:
diff changeset
3 namespace Implab.Components
8200ab154c8a Added ResetState to RunnableComponent to reset in case of failure
cin
parents:
diff changeset
4 {
8200ab154c8a Added ResetState to RunnableComponent to reset in case of failure
cin
parents:
diff changeset
5 public class StateChangeEventArgs {
8200ab154c8a Added ResetState to RunnableComponent to reset in case of failure
cin
parents:
diff changeset
6 /// <summary>
8200ab154c8a Added ResetState to RunnableComponent to reset in case of failure
cin
parents:
diff changeset
7 /// The error information if any
8200ab154c8a Added ResetState to RunnableComponent to reset in case of failure
cin
parents:
diff changeset
8 /// </summary>
8200ab154c8a Added ResetState to RunnableComponent to reset in case of failure
cin
parents:
diff changeset
9 public Exception LastError { get; set; }
8200ab154c8a Added ResetState to RunnableComponent to reset in case of failure
cin
parents:
diff changeset
10
8200ab154c8a Added ResetState to RunnableComponent to reset in case of failure
cin
parents:
diff changeset
11 /// <summary>
8200ab154c8a Added ResetState to RunnableComponent to reset in case of failure
cin
parents:
diff changeset
12 /// The state of the service corresponding to this event
8200ab154c8a Added ResetState to RunnableComponent to reset in case of failure
cin
parents:
diff changeset
13 /// </summary>
8200ab154c8a Added ResetState to RunnableComponent to reset in case of failure
cin
parents:
diff changeset
14 public ExecutionState State { get; set; }
8200ab154c8a Added ResetState to RunnableComponent to reset in case of failure
cin
parents:
diff changeset
15 }
8200ab154c8a Added ResetState to RunnableComponent to reset in case of failure
cin
parents:
diff changeset
16 }