annotate Implab/IServiceLocator.cs @ 203:4d9830a9bbb8
v2
Added 'Fail' method to RunnableComponent which allows component to move from
Running to Failed state.
Added PollingComponent a timer based runnable component
More tests
Added FailPromise a thin class to wrap exceptions
Fixed error handling in SuccessPromise classes.
author |
cin |
date |
Tue, 18 Oct 2016 17:49:54 +0300 |
parents |
48763f3b5db8 |
children |
|
rev |
line source |
40
|
1 using System;
|
|
2 using System.Collections.Generic;
|
|
3 using System.Linq;
|
|
4 using System.Text;
|
|
5 using System.Threading.Tasks;
|
|
6
|
|
7 namespace Implab {
|
|
8 public interface IServiceLocator: IServiceProvider {
|
|
9 T GetService<T>();
|
|
10 bool TryGetService<T>(out T service);
|
69
|
11 bool TryGetService (Type serviceType, out object service);
|
40
|
12 }
|
|
13 }
|