Const
DI token for the live Eddyq client instance. Equivalent to using @InjectEddyq() — reach for this form when you can't use a parameter decorator, e.g. inside a custom useFactory provider.
Eddyq
@InjectEddyq()
useFactory
{ provide: 'MY_QUEUE_WRAPPER', useFactory: (eddyq: Eddyq) => new Wrapper(eddyq), inject: [EDDYQ_INSTANCE],} Copy
{ provide: 'MY_QUEUE_WRAPPER', useFactory: (eddyq: Eddyq) => new Wrapper(eddyq), inject: [EDDYQ_INSTANCE],}
DI token for the live
Eddyqclient instance. Equivalent to using@InjectEddyq()— reach for this form when you can't use a parameter decorator, e.g. inside a customuseFactoryprovider.