(notification: RuntimeNotification)
| 63 | } |
| 64 | |
| 65 | applyNotification(notification: RuntimeNotification): RuntimeRecord | null { |
| 66 | if (!RUNTIME_RECORD_NOTIFICATION_METHODS.has(notification.method)) return null |
| 67 | return this.upsert(notification.params) |
| 68 | } |
| 69 | |
| 70 | delete(runtimeId: string): boolean { |
| 71 | return this.records.delete(runtimeId) |
no test coverage detected