(messageId: string)
| 37 | } |
| 38 | |
| 39 | finish(messageId: string): StreamingData | null { |
| 40 | const result = this.dataMap.get(messageId) ?? null |
| 41 | this.dataMap.delete(messageId) |
| 42 | this.notify() |
| 43 | return result |
| 44 | } |
| 45 | |
| 46 | abort(messageId: string): void { |
| 47 | this.dataMap.delete(messageId) |
no test coverage detected