(final ChannelBuffer buf)
| 486 | } |
| 487 | |
| 488 | @Override |
| 489 | void serializePayload(final ChannelBuffer buf) { |
| 490 | for (int i = 0; i < qualifiers.length; i++) { |
| 491 | //HBASE KeyValue (org.apache.hadoop.hbase.KeyValue) doesn't have an Append Type |
| 492 | KeyValue.serialize(buf, KeyValue.PUT, timestamp, key, family, |
| 493 | qualifiers[i], values[i]); |
| 494 | } |
| 495 | } |
| 496 | |
| 497 | /** |
| 498 | * Predicts a lower bound on the serialized size of this RPC. |
no test coverage detected