(method: string, handler: RuntimeHandler, options: RuntimeRegisterOptions = {})
| 197 | } |
| 198 | |
| 199 | register(method: string, handler: RuntimeHandler, options: RuntimeRegisterOptions = {}): void { |
| 200 | this.handlers.set(method, { handler, validateParams: options.validateParams }) |
| 201 | } |
| 202 | |
| 203 | registerNotification(method: string): void { |
| 204 | this.notifications.add(method) |