Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
SessionNetQualityLevel.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
6public interface SessionNetQualityLevel {
8 public final static int SESSION_NET_QUALITY_UNKNOWN = -1;
9
11 public final static int SESSION_NET_QUALITY_VERY_BAD = 0;
12
14 public final static int SESSION_NET_QUALITY_BAD = 1;
15
17 public final static int SESSION_NET_QUALITY_NOT_GOOD = 2;
18
20 public final static int SESSION_NET_QUALITY_NORMAL = 3;
21
23 public final static int SESSION_NET_QUALITY_GOOD = 4;
24
26 public final static int SESSION_NET_QUALITY_EXCELLENT = 5;
27}