Package org.kiji.schema.impl

Examples of org.kiji.schema.impl.KijiResultRowData


  public KijiRowData get(
      final EntityId entityId,
      final KijiDataRequest dataRequest
  ) throws IOException {

    return new KijiResultRowData(
        mReaderLayoutCapsule.getLayout(),
        getResult(entityId, dataRequest));
  }
View Full Code Here


      final KijiDataRequest dataRequest
  ) throws IOException {
    // Todo(SCHEMA-868): drop cast
    final HBaseKijiTableReader hbaseReader = (HBaseKijiTableReader) reader;
    final KijiResult<Object> result = hbaseReader.getResult(eid, dataRequest);
    return new KijiResultRowData(table.getLayout(), result);
  }
View Full Code Here

TOP

Related Classes of org.kiji.schema.impl.KijiResultRowData

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.