UNPKG

@nestjs/microservices

Version:

Nest - modern, fast, powerful node.js web framework (@microservices)

48 lines (47 loc) 2.92 kB
import { KafkaContext } from '../ctx-host/index.js'; import { KafkaStatus } from '../events/index.js'; import { BrokersFunction, Consumer, EachMessagePayload, Kafka, Message, Producer, RecordMetadata } from '../external/kafka.interface.js'; import { KafkaParser } from '../helpers/index.js'; import { KafkaOptions, MessageHandler, OutgoingResponse, ReadPacket, TransportId } from '../interfaces/index.js'; import { Server } from './server.js'; import { Logger } from '@nestjs/common'; /** * @publicApi */ export declare class ServerKafka extends Server<never, KafkaStatus> { protected readonly options: Required<KafkaOptions>['options']; transportId: TransportId; protected logger: Logger; protected client: Kafka | null; protected consumer: Consumer | null; protected producer: Producer | null; protected parser: KafkaParser | null; protected brokers: string[] | BrokersFunction; protected clientId: string; protected groupId: string; constructor(options: Required<KafkaOptions>['options']); addHandler(pattern: any, callback: MessageHandler, isEventHandler?: boolean, extras?: Record<string, any>): void; listen(callback: (err?: unknown, ...optionalParams: unknown[]) => void): Promise<void>; close(): Promise<void>; start(callback: () => void): Promise<void>; protected registerConsumerEventListeners(): void; protected registerProducerEventListeners(): void; createClient<T = any>(): Promise<T>; bindEvents(consumer: Consumer): Promise<void>; getHandlerByPattern(pattern: string): MessageHandler | null; private isPatternMatch; getMessageHandler(): (payload: EachMessagePayload) => Promise<any>; getPublisher(replyTopic: string, replyPartition: string, correlationId: string, context: KafkaContext): (data: any) => Promise<RecordMetadata[]>; handleMessage(payload: EachMessagePayload): Promise<any>; unwrap<T>(): T; on<EventKey extends string | number | symbol = string | number | symbol, EventCallback = any>(event: EventKey, callback: EventCallback): void; private combineStreamsAndThrowIfRetriable; sendMessage(message: OutgoingResponse, replyTopic: string, replyPartition: string | undefined | null, correlationId: string, context: KafkaContext): Promise<RecordMetadata[]>; assignIsDisposedHeader(outgoingResponse: OutgoingResponse, outgoingMessage: Message): void; assignErrorHeader(outgoingResponse: OutgoingResponse, outgoingMessage: Message): void; assignCorrelationIdHeader(correlationId: string, outgoingMessage: Message): void; assignReplyPartition(replyPartition: string | null | undefined, outgoingMessage: Message): void; handleEvent(pattern: string, packet: ReadPacket, context: KafkaContext): Promise<any>; protected initializeSerializer(options: KafkaOptions['options']): void; protected initializeDeserializer(options: KafkaOptions['options']): void; }