(final ArrayList<KeyValue> arg)
| 2971 | /** Callback executed when a lookup in META completes. */ |
| 2972 | private final class MetaCB implements Callback<Object, ArrayList<KeyValue>> { |
| 2973 | public Object call(final ArrayList<KeyValue> arg) { |
| 2974 | return discoverRegion(arg); |
| 2975 | } |
| 2976 | public String toString() { |
| 2977 | return "locateRegion in META"; |
| 2978 | } |
nothing calls this directly
no test coverage detected