org.netarchivesuite.heritrix3wrapper.jaxb.LoadReport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of heritrix3-wrapper Show documentation
Show all versions of heritrix3-wrapper Show documentation
Wrapper library for unpacking and communicating with Heritrix 3.
package org.netarchivesuite.heritrix3wrapper.jaxb;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class LoadReport {
@XmlElement(required=true)
public Integer busyThreads;
@XmlElement(required=true)
public Integer totalThreads;
@XmlElement(required=true)
public Double congestionRatio;
@XmlElement(required=true)
public Integer averageQueueDepth;
@XmlElement(required=true)
public Integer deepestQueueDepth;
}