Ok,
Again, this code used to exist only as an example that could be installed. It was obviously useful and other media servers like FMS do indeed have the native "checkBandwidth" call. However, I don't believe the other servers do "checkBandwidthUp" which is of course useful if you plan on switching camera quality settings based on the clients upload throughput. So I added the "checkBandwidthUp" as well due to it's usefulness.
So if you wanted the server to know the users upload bw, you could run the "checkBandwitdhUp" in a loop until you have a pretty good measurement. After you're measurement has been recorded, you could then just call another service method on the server..
nc.call("setClientBandwidth", result);
keep in mind that "setClientBandwidth" is not a native method. You have to implement that yourself and do whatever serverside logic you desire with the result. Maybe you have a HashMap of clientCameras and you're storing their latest upload throughput. Whatever you like, be creative!
Dominick Accattato