Class ScatterStatistics
- java.lang.Object
-
- org.apache.commons.compress.archivers.zip.ScatterStatistics
-
public class ScatterStatistics extends java.lang.ObjectProvides information about a scatter compression run.- Since:
- 1.10
-
-
Field Summary
Fields Modifier and Type Field Description private longcompressionElapsedprivate longmergingElapsed
-
Constructor Summary
Constructors Constructor Description ScatterStatistics(long compressionElapsed, long mergingElapsed)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetCompressionElapsed()The number of milliseconds elapsed in the parallel compression phaselonggetMergingElapsed()The number of milliseconds elapsed in merging the results of the parallel compression, the IO phasejava.lang.StringtoString()
-
-
-
Method Detail
-
getCompressionElapsed
public long getCompressionElapsed()
The number of milliseconds elapsed in the parallel compression phase- Returns:
- The number of milliseconds elapsed
-
getMergingElapsed
public long getMergingElapsed()
The number of milliseconds elapsed in merging the results of the parallel compression, the IO phase- Returns:
- The number of milliseconds elapsed
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-