| 13 | } |
| 14 | |
| 15 | int RNode::submit(const MessagePtr& msg) { |
| 16 | CHECK_NOTNULL(this); CHECK(msg); |
| 17 | auto msgs = exec_.obj().slice(msg, exec_.keyRanges(id())); |
| 18 | return submit(msgs); |
| 19 | } |
| 20 | |
| 21 | int RNode::submit(const Task& task, |
| 22 | const Message::Callback& recv_handle) { |
no test coverage detected