| 11 | type Listener = () => void |
| 12 | |
| 13 | class StreamingManager { |
| 14 | // 支持多个并行 streaming,key 是 messageId |
| 15 | private dataMap = new Map<string, StreamingData>() |
| 16 | private listeners = new Set<Listener>() |
nothing calls this directly
no outgoing calls
no test coverage detected