(final ChannelBuffer buf)
| 475 | } |
| 476 | |
| 477 | @Override |
| 478 | void serializePayload(final ChannelBuffer buf) { |
| 479 | for (int i = 0; i < qualifiers.length; i++) { |
| 480 | KeyValue.serialize(buf, KeyValue.PUT, timestamp, key, family, |
| 481 | qualifiers[i], values[i]); |
| 482 | } |
| 483 | } |
| 484 | |
| 485 | /** |
| 486 | * Predicts a lower bound on the serialized size of this RPC. |
no test coverage detected