apoc.result.TransactionInfoResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apoc-common Show documentation
Show all versions of apoc-common Show documentation
Data types package for Neo4j Procedures
package apoc.result;
public class TransactionInfoResult {
public long rolledBackTx;
public long peakTx;
public long lastTxId;
public long currentOpenedTx;
public long totalOpenedTx;
public long totalTx;
public TransactionInfoResult(
long rolledBackTx,
long peakTx,
long lastTxId,
long currentOpenedTx,
long totalOpenedTx,
long totalTx
) {
this.rolledBackTx = rolledBackTx;
this.peakTx = peakTx;
this.lastTxId = lastTxId;
this.currentOpenedTx = currentOpenedTx;
this.totalOpenedTx = totalOpenedTx;
this.totalTx = totalTx;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy