(data: any, path: string, bytes: number)
| 203 | } |
| 204 | |
| 205 | collectRead(data: any, path: string, bytes: number) { |
| 206 | this.collectSpeed(data, path, this.state.readSpeed); |
| 207 | this.collectBandwidth(bytes, path, this.state.outband); |
| 208 | } |
| 209 | |
| 210 | collectBroadcast(data: any, path: string, bytes: number) { |
| 211 | this.collectSpeed(data, path, this.state.broadcastSpeed); |
no test coverage detected