}
}
stateMap.put(STORE_STATE, new AtomicBoolean());
stateMap.put(INDEX_VERSION_NAME, INDEX_VERSION);
durableSubscribers = store.getListContainer("durableSubscribers");
durableSubscribers.setMarshaller(new CommandMarshaller());
preparedTransactions = store.getMapContainer("transactions", TRANSACTIONS, false);
// need to set the Marshallers here
preparedTransactions.setKeyMarshaller(Store.COMMAND_MARSHALLER);
preparedTransactions.setValueMarshaller(new AMQTxMarshaller(wireFormat));
}