| 928 | } |
| 929 | |
| 930 | void AbstractCommand::checkSocketRecvBuffer() |
| 931 | { |
| 932 | if (socketRecvBuffer_->bufferEmpty() && |
| 933 | socket_->getRecvBufferedLength() == 0) { |
| 934 | return; |
| 935 | } |
| 936 | |
| 937 | setStatus(Command::STATUS_ONESHOT_REALTIME); |
| 938 | e_->setNoWait(true); |
| 939 | } |
| 940 | |
| 941 | void AbstractCommand::addCommandSelf() |
| 942 | { |
nothing calls this directly
no test coverage detected