@Override
/** {@inheritDoc} */
public TableLayoutMonitor apply(String tableName) {
final KijiURI tableURI = KijiURI.newBuilder(mInstanceURI).withTableName(tableName).build();
try {
return new DefaultTableLayoutMonitor(tableURI, mSchemaTable, mMetaTable, mZKClient).start();
} catch (IOException e) {
throw new KijiIOException(e);
}
}