Package org.kiji.schema.layout.impl.TableLayoutMonitor

Examples of org.kiji.schema.layout.impl.TableLayoutMonitor.DefaultTableLayoutMonitor


    @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);
      }
    }
View Full Code Here

TOP

Related Classes of org.kiji.schema.layout.impl.TableLayoutMonitor.DefaultTableLayoutMonitor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.