(final ArrayList<Boolean> matches)
| 659 | /** CB to called after all of the UIDs have been resolved */ |
| 660 | class MatchCB implements Callback<Object, ArrayList<Boolean>> { |
| 661 | @Override |
| 662 | public Object call(final ArrayList<Boolean> matches) |
| 663 | throws Exception { |
| 664 | for (final boolean matched : matches) { |
| 665 | if (!matched) { |
| 666 | skips.add(tsuid); |
| 667 | return null; |
| 668 | } |
| 669 | } |
| 670 | // matched all, good data |
| 671 | keepers.add(tsuid); |
| 672 | processRow(key, row); |
| 673 | return null; |
| 674 | } |
| 675 | } |
| 676 | |
| 677 | /** Resolves all of the row key UIDs to their strings for filtering */ |
nothing calls this directly
no test coverage detected