Eagerly prefetches and caches a table's region metadata from HBase. @param table The name of the table whose metadata you intend to prefetch. @return A deferred object that indicates the completion of the request. The Object has no special meaning and can be null (think of it as {@co
(final String table)
| 2237 | * @since 1.5 |
| 2238 | */ |
| 2239 | public Deferred<Object> prefetchMeta(final String table) { |
| 2240 | return prefetchMeta(table.getBytes(), EMPTY_ARRAY, EMPTY_ARRAY); |
| 2241 | } |
| 2242 | |
| 2243 | /** |
| 2244 | * Eagerly prefetches and caches part of a table's region metadata from HBase. |
nothing calls this directly
no test coverage detected