annotate Implab/Components/IServiceLocator.cs @ 262:f1696cdc3d7a
v3 v3.0.8
Added IInitializable.Initialize() overload
Added IRunnable.Start(), IRunnable.Start() overloads
Fixed cancellation of the current operation when Stop() is called
More tests
author |
cin |
date |
Mon, 16 Apr 2018 02:12:39 +0300 |
parents |
9f63dade3a40 |
children |
|
rev |
line source |
250
|
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.Components {
|
|
8 public interface IServiceLocator: IServiceProvider {
|
|
9 T GetService<T>();
|
|
10 bool TryGetService<T>(out T service);
|
|
11 bool TryGetService (Type serviceType, out object service);
|
|
12 }
|
|
13 }
|