YiluphpADB

等待某个方法返回不为空的结果

浏览数 65131

/**
 * 等待某个方法返回不为空的结果,如果返回为空的结果会等待到第三个参数设置的超时时间为止
 * @param $method string 本类的方法名
 * @param $params array 方法对应的参数,按顺序存放在数组里
 * @param $timeout integer 等待的超时时间,单位毫秒,默认为3000毫秒。
 * @param $intervalTime integer 轮询查询的间隔时间,单位微秒,默认为500000微秒,即500毫秒。
 * @return array $attribute为单个节点时返回包含节点对象(可能多个)的一维数组,$attribute为多个节点属性时返回二维数据,排列顺序(数组的键名)与$attribute传入的一样,失败返回空数组
 * @throws Exception 错误抛出异常信息
 **/
public function waitting($method, array $params=[], $timeout=3000, $intervalTime=500000){}

我来说说