Serializes this KeyValue. @param buf The buffer into which to write the serialized form. @param type What kind of KV (e.g. #PUT or DELETE_FAMILY).
(final ChannelBuffer buf, final byte type)
| 407 | * @param type What kind of KV (e.g. {@link #PUT} or {@link DELETE_FAMILY}). |
| 408 | */ |
| 409 | void serialize(final ChannelBuffer buf, final byte type) { |
| 410 | serialize(buf, type, timestamp, key, family, qualifier, value); |
| 411 | } |
| 412 | |
| 413 | /** |
| 414 | * Returns the serialized length of a KeyValue. |
no outgoing calls
no test coverage detected