* Check if a surface is in streaming mode
(surfaceId: string)
| 143 | * Check if a surface is in streaming mode |
| 144 | */ |
| 145 | isStreaming(surfaceId: string): boolean { |
| 146 | return this.streamingStates.get(surfaceId)?.isStreaming ?? false; |
| 147 | } |
| 148 | |
| 149 | /** |
| 150 | * Clear all surfaces |
no test coverage detected