-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathlife-time-control.js
41 lines (36 loc) · 1.09 KB
/
life-time-control.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import { Container, LifeTime, Injectable } from 'container-ioc';
/*
By default, containers resolve singletons when using useClass and useFactory.
Default life time for all items in a container can be set by passing an option object to it's contructor with **defailtLifeTime** attribute.
Possible values: LifeTime.PerRequest (resolves instances) and LifeTime.Persistent (resolves singletons);
*/
const container = new Container({
defaultLifeTime: LifeTime.PerRequest
});
/*
You can also specify life time individually for each item in a container by specifying lifeTime attribute.
*/
@Injectable()
class ServiceA {}
/* With classes */
container.register([
{
token: 'ISerivceA',
useClass: ServiceA,
lifeTime: LifeTime.PerRequest
}
]);
/* With factories */
container.register([
{
token: 'IServiceB',
useFactory: () => {
return {
serve() {}
};
},
lifeTime: LifeTime.Persistent
}
]);
const service1 = container.resolve('IServiceA');
const service2 = container.resolve('IServiceB');