(
pattern: any,
data: TInput,
)
| 363 | } |
| 364 | |
| 365 | public send<TResult = any, TInput = any>( |
| 366 | pattern: any, |
| 367 | data: TInput, |
| 368 | ): Observable<TResult> { |
| 369 | throw new Error( |
| 370 | 'Method is not supported in gRPC mode. Use ClientGrpc instead (learn more in the documentation).', |
| 371 | ); |
| 372 | } |
| 373 | |
| 374 | protected getClient(name: string): any { |
| 375 | return this.grpcClients.find(client => |
no outgoing calls
no test coverage detected