()
| 65 | } |
| 66 | |
| 67 | func getActivePlaylistCount() (count int) { |
| 68 | count = 0 |
| 69 | BufferInformation.Range(func(key, value interface{}) bool { |
| 70 | count++ |
| 71 | return true |
| 72 | }) |
| 73 | return count |
| 74 | } |
| 75 | |
| 76 | func cleanUpStaleClients() { |
| 77 | BufferInformation.Range(func(key, value interface{}) bool { |
no outgoing calls
no test coverage detected