(final ChannelBuffer buf, final int cell_size)
| 703 | } |
| 704 | |
| 705 | @Override |
| 706 | Object deserialize(final ChannelBuffer buf, final int cell_size) { |
| 707 | final ClientPB.GetResponse resp = |
| 708 | readProtobuf(buf, ClientPB.GetResponse.PARSER); |
| 709 | if (isGetRequest()) { |
| 710 | return extractResponse(resp, buf, cell_size); |
| 711 | } else { |
| 712 | final ClientPB.Result result = resp.getResult(); |
| 713 | return result != null ? result.getExists() : false; // is `null' possible here? |
| 714 | } |
| 715 | } |
| 716 | |
| 717 | |
| 718 | public void setServerBlockCache(final boolean populate_blockcache) { |
nothing calls this directly
no test coverage detected