@golevelup/nestjs-rabbitmq
Version:
Badass RabbitMQ addons for NestJS
10 lines • 378 B
TypeScript
import { AmqpConnection } from './connection';
export declare class AmqpConnectionManager {
private connections;
addConnection(connection: AmqpConnection): void;
getConnection(name: string): AmqpConnection | undefined;
getConnections(): AmqpConnection[];
clearConnections(): void;
close(): Promise<void>;
}
//# sourceMappingURL=connectionManager.d.ts.map