annotate Implab/IServiceLocator.cs @ 104:5f10d54b45df
v2
renamed Promise.Last -> Promise.On
Promise.On doesn't changes Promise.IsExclusive property
author |
cin |
date |
Sun, 09 Nov 2014 23:03:45 +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 }
|