##// END OF EJS Templates
Added IInitializable.Initialize() overload...
Added IInitializable.Initialize() overload Added IRunnable.Start(), IRunnable.Start() overloads Fixed cancellation of the current operation when Stop() is called More tests

File last commit:

r250:9f63dade3a40 v3
r262:f1696cdc3d7a v3.0.8 v3
Show More
IServiceLocator.cs
13 lines | 362 B | text/x-csharp | CSharpLexer
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Implab.Components {
public interface IServiceLocator: IServiceProvider {
T GetService<T>();
bool TryGetService<T>(out T service);
bool TryGetService (Type serviceType, out object service);
}
}