Skip to content

timeout

xinbaicheng edited this page May 31, 2016 · 4 revisions

接口定义

/**
 * @param timeSecond 读取数据超时阈值,单位为秒
 */
public void setTimeout(int timeSecond)

使用场景

网络播放时,调用该接口有效。SDK默认值为30s

使用示例

须在prepareAsync之前调用本接口

KSYMediaPlayer ksyMediaPlayer;

ksyMediaPlayer.setTimeout(30);

ksyMediaPlayer.prepareAsync();
Clone this wiki locally