* Exposed for TESTING
*/
void setup(HTableFactory factory, ExecutorService pool, Abortable abortable, Stoppable stop, int cacheSize) {
this.pool = new WaitForCompletionTaskRunner(pool);
this.factory = new CachingHTableFactory(factory, cacheSize);
this.abortable = new CapturingAbortable(abortable);
this.stopped = stop;
}