@nivinjoseph/n-eda
Version:
Event Driven Architecture framework
14 lines • 345 B
TypeScript
export interface GrpcDetails {
readonly host: string;
readonly port: number;
readonly isSecure?: boolean;
readonly connectionPoolSize?: number;
}
export interface GrpcModel {
consumerId: string;
topic: string;
partition: number;
eventName: string;
payload: string;
}
//# sourceMappingURL=grpc-details.d.ts.map