Hello,
i'm using .NET adapter API, and have my MetaDataAdapter managing connected users/sessions using this methods below.
public override void NotifyNewSession(string user, string sessionID, IDictionary clientContext)
{
}
public override void NotifySessionClose(string sessionID)
{
}
The question is, is it possible to get current bandwidth (Throughput (kbit/s)) per user/session inside meta data adapter? Or maybe somewhere else?
I know there is method "GetAllowedMaxBandwidth" for getting max bandwidth, but not current.
It is basically same thing as MonitorDemo example, but this example is general data from server.
Thanks