Package com.twilio.video
Class NetworkQualityConfiguration
- java.lang.Object
-
- com.twilio.video.NetworkQualityConfiguration
-
public class NetworkQualityConfiguration extends java.lang.Object
NetworkQualityConfiguration
allows you to specify verbosity levels of Network Quality information returned by the Network Quality API.
-
-
Field Summary
Fields Modifier and Type Field Description NetworkQualityVerbosity
local
TheNetworkQualityVerbosity
for the Local Participant.NetworkQualityVerbosity
remote
TheNetworkQualityVerbosity
for Remote Participants.
-
Constructor Summary
Constructors Constructor Description NetworkQualityConfiguration()
Creates aNetworkQualityConfiguration
object with the default values,NetworkQualityVerbosity.NETWORK_QUALITY_VERBOSITY_MINIMAL
for the Local Participant andNetworkQualityVerbosity.NETWORK_QUALITY_VERBOSITY_NONE
for the Remote Participants.NetworkQualityConfiguration(NetworkQualityVerbosity local, NetworkQualityVerbosity remote)
Creates aNetworkQualityConfiguration
object with the providedNetworkQualityVerbosity
levels.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
-
-
-
Field Detail
-
local
public final NetworkQualityVerbosity local
TheNetworkQualityVerbosity
for the Local Participant.
-
remote
public final NetworkQualityVerbosity remote
TheNetworkQualityVerbosity
for Remote Participants.
-
-
Constructor Detail
-
NetworkQualityConfiguration
public NetworkQualityConfiguration()
Creates aNetworkQualityConfiguration
object with the default values,NetworkQualityVerbosity.NETWORK_QUALITY_VERBOSITY_MINIMAL
for the Local Participant andNetworkQualityVerbosity.NETWORK_QUALITY_VERBOSITY_NONE
for the Remote Participants.
-
NetworkQualityConfiguration
public NetworkQualityConfiguration(@NonNull NetworkQualityVerbosity local, @NonNull NetworkQualityVerbosity remote)
Creates aNetworkQualityConfiguration
object with the providedNetworkQualityVerbosity
levels.- Parameters:
local
- TheNetworkQualityVerbosity
for the Local Participant.NetworkQualityVerbosity.NETWORK_QUALITY_VERBOSITY_NONE
is invalid for the Local Participant and will throw an IllegalArgumentException.remote
- TheNetworkQualityVerbosity
for the Remote Participants.
-
-