All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.elastic.sailor.ExecutionStats Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
package io.elastic.sailor;

public class ExecutionStats {
    private int dataCount;
    private int errorCount;
    private int reboundCount;

    public ExecutionStats(int dataCount, int errorCount, int reboundCount) {
        this.dataCount = dataCount;
        this.errorCount = errorCount;
        this.reboundCount = reboundCount;
    }

    public int getDataCount() {
        return dataCount;
    }

    public int getErrorCount() {
        return errorCount;
    }

    public int getReboundCount() {
        return reboundCount;
    }

    @Override
    public String toString() {
        return "ExecutionStats{" +
                "dataCount=" + dataCount +
                ", errorCount=" + errorCount +
                ", reboundCount=" + reboundCount +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy