* 持续从缓存区 写出数据 * @param chatRecordId 对话记录id
(chatRecordId: string)
| 491 | * @param chatRecordId 对话记录id |
| 492 | */ |
| 493 | static write(chatRecordId: string) { |
| 494 | const chatRecord = this.chatMessageContainer[chatRecordId] |
| 495 | if (chatRecord) { |
| 496 | chatRecord.write() |
| 497 | } |
| 498 | } |
| 499 | |
| 500 | static open(chatRecordId: string) { |
| 501 | const chatRecord = this.chatMessageContainer[chatRecordId] |
no outgoing calls
no test coverage detected