Put a task in the buffer's job queue
| 819 | |
| 820 | // Put a task in the buffer's job queue |
| 821 | void RdmaMessageBuffer::EnqueueItem(string item) { |
| 822 | mutex_lock lock{mu_}; |
| 823 | queue_.push(item); |
| 824 | } |
| 825 | |
| 826 | // Rdma-Write the content of the buffer |
| 827 | void RdmaMessageBuffer::Write(uint32_t imm_data, size_t buffer_size) { |
no test coverage detected