// Special dispatcher threads to handle incoming requests
// These are used so that we can process messages in a different thread than the main HStoreCoordinator thread
// TransactionInitDispatcher
if (hstore_conf.site.coordinator_init_thread) {
this.transactionInit_dispatcher = new TransactionInitDispatcher(this.hstore_site, this);
String name = HStoreThreadManager.getThreadName(this.hstore_site, "coord", "init");
Thread t = new Thread(this.transactionInit_dispatcher, name);
this.dispatcherThreads.add(t);
} else {
this.transactionInit_dispatcher = null;