// 
// Decompiled by Procyon v0.6.0
// 

package com.github.luben.zstd;

public class ZstdFrameProgression
{
    private long ingested;
    private long consumed;
    private long produced;
    private long flushed;
    private int currentJobID;
    private int nbActiveWorkers;
    
    public ZstdFrameProgression(final long ingested, final long consumed, final long produced, final long flushed, final int currentJobID, final int nbActiveWorkers) {
        this.ingested = ingested;
        this.consumed = consumed;
        this.produced = produced;
        this.flushed = flushed;
        this.currentJobID = currentJobID;
        this.nbActiveWorkers = nbActiveWorkers;
    }
    
    public long getIngested() {
        return this.ingested;
    }
    
    public long getConsumed() {
        return this.consumed;
    }
    
    public long getProduced() {
        return this.produced;
    }
    
    public long getFlushed() {
        return this.flushed;
    }
    
    public int getCurrentJobID() {
        return this.currentJobID;
    }
    
    public int getNbActiveWorkers() {
        return this.nbActiveWorkers;
    }
}
