Variable EDDYQ_OPTIONSConst

    EDDYQ_OPTIONS: "EDDYQ_OPTIONS"

    DI token holding the resolved EddyqModuleOptions passed to EddyqModule.forRoot / forRootAsync. Inject when a service needs to read the effective module config — e.g. to derive a related connection URL or to log the queue name at startup.

    Most consumers should prefer @InjectEddyq() to get the queue itself.

    @Injectable()
    export class MyService {
    constructor(
    @Inject(EDDYQ_OPTIONS) private readonly opts: EddyqModuleOptions,
    ) {}
    }