Class ScatterStatistics
java.lang.Object
org.apache.commons.compress.archivers.zip.ScatterStatistics
Provides information about a scatter compression run.
- Since:
- 1.10
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final longprivate final long -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionlongThe number of milliseconds elapsed in the parallel compression phaselongThe number of milliseconds elapsed in merging the results of the parallel compression, the IO phasetoString()
-
Field Details
-
compressionElapsed
private final long compressionElapsed -
mergingElapsed
private final long mergingElapsed
-
-
Constructor Details
-
ScatterStatistics
ScatterStatistics(long compressionElapsed, long mergingElapsed)
-
-
Method Details
-
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
-