Package im.zego.zegoexpress.entity
Class ZegoNetworkSpeedTestConfig
- java.lang.Object
-
- im.zego.zegoexpress.entity.ZegoNetworkSpeedTestConfig
-
public class ZegoNetworkSpeedTestConfig extends java.lang.Object
Network speed test config
-
-
Field Summary
Fields Modifier and Type Field Description int
expectedDownlinkBitrate
The unit is kbps.int
expectedUplinkBitrate
The unit is kbps.boolean
testDownlink
Test downlink or notboolean
testUplink
Test uplink or not
-
Constructor Summary
Constructors Constructor Description ZegoNetworkSpeedTestConfig()
-
-
-
Field Detail
-
testUplink
public boolean testUplink
Test uplink or not
-
expectedUplinkBitrate
public int expectedUplinkBitrate
The unit is kbps. Recommended to use the bitrate in ZegoVideoConfig when call startPublishingStream to determine whether the network uplink environment is suitable.
-
testDownlink
public boolean testDownlink
Test downlink or not
-
expectedDownlinkBitrate
public int expectedDownlinkBitrate
The unit is kbps. Recommended to use the bitrate in ZegoVideoConfig when call startPublishingStream to determine whether the network downlink environment is suitable.
-
-