diff Implab/Components/IRunnable.cs @ 205:8200ab154c8a v2

Added ResetState to RunnableComponent to reset in case of failure Added StateChanged event to IRunnable Renamed Promise.SUCCESS -> Promise.Success Added Promise.FromException Renamed Bundle -> PromiseAll in PromiseExtensions
author cin
date Tue, 25 Oct 2016 17:40:33 +0300
parents 4d9830a9bbb8
children 7d07503621fe
line wrap: on
line diff
--- a/Implab/Components/IRunnable.cs	Tue Oct 18 17:49:54 2016 +0300
+++ b/Implab/Components/IRunnable.cs	Tue Oct 25 17:40:33 2016 +0300
@@ -14,6 +14,8 @@
 
         ExecutionState State { get; }
 
+        event EventHandler<StateChangeEventArgs> StateChanged;
+
         Exception LastError { get; }
     }
 }