private TransactionInformation(TransactionInformation other) { this.local_id = other.local_id; this.dtcId = other.dtcId; this.creation_time = other.creation_time; this.status = other.status; }
internal Transaction(Transaction other) { this.level = other.level; this.info = other.info; this.dependents = other.dependents; this.volatiles = other.Volatiles; this.durables = other.Durables; this.pspe = other.Pspe; }
internal Transaction() { this.info = new TransactionInformation(); this.level = IsolationLevel.Serializable; }
internal TransactionInformation Clone( TransactionInformation other) { return new TransactionInformation(other); }