Lines Matching refs:retry_count
135 retry_count: u32,
140 write!(f, "OutputData: session_id:{}, response:{}, option:{:#?}, package_index:{}, status:{:#?}, retry_count:{}, data size:{}",
141 self.session_id, self.response, self.option, self.package_index, self.status, self.retry_count, self.data.len())
287 // 如果不是,则检查retry_count, 自减1,继续send, 同时继续超时wait(如果超时,则继续检查状态,retry count 减1,继续send, 超时wait)
313 let mut retry_count = first_pkg.retry_count;
326 retry_count -= 1;
327 first_pkg.retry_count = retry_count;
352 retry_count = first_pkg.retry_count;
353 while retry_count > 0 && status == OutputDataStatus::WaitResponse {
354 // 保存retry_count
355 retry_count -= 1;
356 first_pkg.retry_count = retry_count;
383 retry_count = first_pkg.retry_count;
456 retry_count: 5,