public Map get()

in modules/core/src/main/java/org/apache/fluo/recipes/core/transaction/RecordingTransactionBase.java [118:125]


  public Map<RowColumn, Bytes> get(Collection<RowColumn> rowColumns) {
    Map<RowColumn, Bytes> rowColVal = txb.get(rowColumns);
    for (Map.Entry<RowColumn, Bytes> rce : rowColVal.entrySet()) {
      txLog.filteredAdd(
          LogEntry.newGet(rce.getKey().getRow(), rce.getKey().getColumn(), rce.getValue()), filter);
    }
    return rowColVal;
  }