coffee-core
Version:
Coffee IT API core library
8 lines (7 loc) • 364 B
TypeScript
import { EventPublisher } from './event-publisher.interface';
import { BrokerConfigInterface } from '../subscriber/broker-config.interface';
export declare class EventPublisherService {
protected readonly publisher: EventPublisher;
constructor(config: BrokerConfigInterface, eventPublisher?: EventPublisher);
hasActiveConnection(): Promise<boolean>;
}