* 等待所有数据输出完毕后 才会关闭流 * @param chatRecordId 对话记录id * @returns boolean
(chatRecordId: string)
| 510 | * @returns boolean |
| 511 | */ |
| 512 | static close(chatRecordId: string) { |
| 513 | const chatRecord = this.chatMessageContainer[chatRecordId] |
| 514 | if (chatRecord) { |
| 515 | chatRecord.close() |
| 516 | } |
| 517 | } |
| 518 | |
| 519 | /** |
| 520 | * 停止输出 立即关闭定时任务输出 |
no outgoing calls
no test coverage detected