--
You received this message because you are subscribed to the Google Groups "kurento" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kurento+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "kurento" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/kurento/S2QijPomixM/unsubscribe.
To unsubscribe from this group and all its topics, send an email to kurento+unsubscribe@googlegroups.com.
for (Stats stat : stats.values()) {
switch(stat.getType()) {
case inboundrtp:
RTCInboundRTPStreamStats inboundStats = (RTCInboundRTPStreamStats) stat;
//do something here
break;
case outboundrtp:
RTCOutboundRTPStreamStats outboundStats = (RTCOutboundRTPStreamStats) stat;
//do something here
break;
default:
break;
}
}