##// END OF EJS Templates
Added ResetState to RunnableComponent to reset in case of failure...
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

File last commit:

r153:b933ec88446e v2
r205:8200ab154c8a v2
Show More
App.cs
25 lines | 796 B | text/x-csharp | CSharpLexer
using System;
using System.Collections.Generic;
namespace Implab.Components {
/// <summary>
/// Global application components and services.
/// </summary>
public static class App {
readonly static ComponentContainer<object> _root = new ComponentContainer<object>();
/// <summary>
/// The container for application level components.
/// </summary>
/// <remarks>Pools of disposable objects can be placed here and they will be automatically
/// disposed when application domain is unloaded.</remarks>
public static ICollection<object> RootContainer {
get { return _root; }
}
static App() {
AppDomain.CurrentDomain.DomainUnload += (sender, e) => _root.Dispose();
}
}
}