blob: 96c0bbe6f7d775e1279cb1be3ed341f3deb3922c [file] [log] [blame]
package org.apache.hadoop.mapred;
//Workaround for PeriodicStateAccumulator being package access
public class WrappedPeriodicStatsAccumulator {
private PeriodicStatsAccumulator real;
public WrappedPeriodicStatsAccumulator(PeriodicStatsAccumulator real) {
this.real = real;
}
public void extend(double newProgress, int newValue) {
real.extend(newProgress, newValue);
}
}