Package com.alvazan.orm.api.z8spi

Examples of com.alvazan.orm.api.z8spi.ColumnSliceInfo


  public void clearDb() {
    rawSession.clearDatabase();
  }
  @Override
  public AbstractCursor<Column> columnSlice(DboTableMeta colFamily, byte[] rowKey, byte[] from, byte[] to, Integer batchSize, Class columnNameType) {
        ColumnSliceInfo sliceInfo = new ColumnSliceInfo(colFamily, rowKey, from, to, columnNameType);
    return rawSession.columnSlice(sliceInfo, batchSize, null, ormSession);
  }
View Full Code Here

TOP

Related Classes of com.alvazan.orm.api.z8spi.ColumnSliceInfo

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.