* 设置执行命令等待结果超时时间 * @param[in] iTimeOutMs 毫秒超时时间,0阻塞 * @return * @see * @note */
| 112 | * @note |
| 113 | */ |
| 114 | void RedisClient::setTimeOutMs(int iTimeOutMs) { |
| 115 | _iTimeOut = iTimeOutMs; |
| 116 | _qTimer.setInterval(_iTimeOut); |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * 获取执行命令等待结果超时时间 |
nothing calls this directly
no outgoing calls
no test coverage detected