How to get readers of the stream
The question is, how I can create function on server-side, that returns users count reading current stream.
For example:
Client.prototype.returnStreamCount = function(streamName)
{
??????????????????
return count;
}
I read all server-side API, and find only one function that can help me: getLiveStreamStats() - but how to use it on server?
