This commit is contained in:
insanity 2017-09-27 16:26:05 +09:00
parent 52c52c8e48
commit 7b7465decf
2 changed files with 13 additions and 1 deletions

View File

@ -0,0 +1,12 @@
export class ServiceInvoker {
private configMap: Map<string, string>;
public constructor() {
this.configMap = new Map();
}
public invoke(className: string, methodName: string): void {
return;
}
}

View File

@ -186,7 +186,7 @@ export default class WebSocketRPC {
}
private onNotificationHandler(notification: Notification): void {
//
// invoke
}
private fireOnDisconnect(): void {