monorepo-microservice-rbac/apps/services
2023-09-08 14:14:31 +08:00
..
aorta feat: antd message注入 2023-09-07 13:41:32 +08:00
cert feat: 路由调整 2023-09-07 16:42:34 +08:00
dicom feat: 标签接入mongodb 2023-09-08 14:14:31 +08:00
dmp feat: tasks.json编排 2023-09-07 13:12:13 +08:00
logger feat: tasks.json编排 2023-09-07 13:12:13 +08:00
readme.md first commit 2023-08-27 14:37:59 +08:00

发布订阅EventPattern

@MessagePattern: 基于rpc比较喜欢用一个菠萝一个坑

// 网关
@Get('/hello')
async getHello(): Promise<any> {
  const pattern = { cmd: 'sum' };
  const payload = [1, 2];
  // this.client.emit(pattern,payload)没有返回值
  const it = await this.client.send<number[]>(pattern, payload);
  return `收到返回值: ${it}`;
}

// 服务
@EventPattern({ cmd: 'sum' })
sum(data: number[]): number {
  return (data || []).reduce((a, b) => a + b);
}