| 237 | } |
| 238 | |
| 239 | void |
| 240 | HQTransaction::_schedule_read_ready_event() |
| 241 | { |
| 242 | if (this->_read_ready_event) { |
| 243 | // The event is already scheduled. No need to schedule the same event. |
| 244 | return; |
| 245 | } |
| 246 | |
| 247 | this->_read_ready_event = this->_thread->schedule_imm(this, VC_EVENT_READ_READY, &this->_read_vio); |
| 248 | } |
| 249 | |
| 250 | void |
| 251 | HQTransaction::_unschedule_read_ready_event() |
no test coverage detected