コード例 #1
0
  /** remove the transaction info */
  public void removeTransactionInfo(CachedObject object) {

    if (object.isMemory()) {
      return;
    }

    rowActionMap.remove(object.getPos());
  }
コード例 #2
0
  /** add transaction info to a row just loaded from the cache. called only for CACHED tables */
  public void setTransactionInfo(CachedObject object) {

    if (object.isMemory()) {
      return;
    }

    Row row = (Row) object;
    RowAction rowact = (RowAction) rowActionMap.get(row.position);

    row.rowAction = rowact;
  }