MapDrivenDataStore constructor

MapDrivenDataStore(
  1. String tableName
)

Implementation

MapDrivenDataStore(String tableName) {
  _tableName = tableName;
  _eventHandler = new EventHandler<Map>(tableName);
}