(final ArrayList<Long> incs)
| 738 | ).addCallbackDeferring(new Callback<Deferred<ArrayList<KeyValue>>, |
| 739 | ArrayList<Long>>() { |
| 740 | public Deferred<ArrayList<KeyValue>> call(final ArrayList<Long> incs) { |
| 741 | final GetRequest get = new GetRequest(table, key) |
| 742 | .family(family).qualifier(qual); |
| 743 | return client.get(get); |
| 744 | } |
| 745 | }).join(); |
| 746 | assertSizeIs(1, kvs); |
| 747 | assertEquals(big + big, Bytes.getLong(kvs.get(0).value())); |
nothing calls this directly
no test coverage detected