We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
MsvcUtil
1 parent 4003514 commit 0fa72b6Copy full SHA for 0fa72b6
1 file changed
packages/microservices/client/client-proxy.ts
@@ -25,6 +25,7 @@ export abstract class ClientProxy {
25
public abstract close(): any;
26
27
protected routingMap = new Map<string, Function>();
28
+ protected readonly msvcUtil = Utils.MsvcUtil;
29
30
public send<TResult = any, TInput = any>(
31
pattern: any,
@@ -103,6 +104,6 @@ export abstract class ClientProxy {
103
104
}
105
106
protected normalizePattern<T = any>(pattern: T): string {
- return Utils.MsvcUtil.transformPatternToRoute(pattern);
107
+ return this.msvcUtil.transformPatternToRoute(pattern);
108
109
0 commit comments