constructor(
@ILogService private readonly _logService: ILogService,
) {
super();
if (this._options.enableAutoShutdown) {
// Start initial shutdown timer (no clients connected yet)
this._scheduleShutdown(true);
}
get hasActiveConsumers(): boolean {
}
active(consumer: string): IDisposable {