(final ChannelBuffer buf, int cell_size)
| 581 | } |
| 582 | |
| 583 | @Override |
| 584 | Object deserialize(final ChannelBuffer buf, int cell_size) { |
| 585 | HBaseRpc.ensureNoCell(cell_size); |
| 586 | final MutateResponse resp = readProtobuf(buf, MutateResponse.PARSER); |
| 587 | return null; |
| 588 | } |
| 589 | |
| 590 | /** Serialize the raw underlying `Put' into the given buffer. */ |
| 591 | void serializeInto(final ChannelBuffer buf) { |
nothing calls this directly
no test coverage detected