package simpledb;

/** 
 * TransactionId is a class that contains the identifier of a transaction.
 */
public class TransactionId {
    
    static long counter = System.currentTimeMillis();
    
    long myid;
    public TransactionId() {
	myid = counter++;
    }

    public long getId() {
	return myid;
    }
}
