private final String filename; //name of current file
private final Lsn firstLsn;
public TxnQueue(Integer txnId, Lsn firstLsn, String path) {
this.txnId = txnId;
this.firstLsn = new Lsn(firstLsn);
this.path = path;
filename = path + File.separator + "txn_" + Integer.toHexString(txnId.intValue());
}