| 977 | void RequestGroup::increaseNumCommand() { ++numCommand_; } |
| 978 | |
| 979 | void RequestGroup::decreaseNumCommand() |
| 980 | { |
| 981 | --numCommand_; |
| 982 | if (!numCommand_ && requestGroupMan_) { |
| 983 | A2_LOG_DEBUG(fmt("GID#%s - Request queue check", gid_->toHex().c_str())); |
| 984 | requestGroupMan_->requestQueueCheck(); |
| 985 | } |
| 986 | } |
| 987 | |
| 988 | TransferStat RequestGroup::calculateStat() const |
| 989 | { |
no test coverage detected