com.sleepycat.persist.evolve.EvolveStats Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of je Show documentation
Show all versions of je Show documentation
Berkley Database Java Edition - build and runtime support.
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2002, 2013 Oracle and/or its affiliates. All rights reserved.
*
*/
package com.sleepycat.persist.evolve;
/**
* Statistics accumulated during eager entity evolution.
*
* @see com.sleepycat.persist.evolve Class Evolution
* @author Mark Hayes
*/
public class EvolveStats {
private int nRead;
private int nConverted;
EvolveStats() {
}
void add(int nRead, int nConverted) {
this.nRead += nRead;
this.nConverted += nConverted;
}
/**
* The total number of entities read during eager evolution.
*/
public int getNRead() {
return nRead;
}
/**
* The total number of entities converted during eager evolution.
*/
public int getNConverted() {
return nConverted;
}
}