Class ScatterStatistics


  • public class ScatterStatistics
    extends java.lang.Object
    Provides information about a scatter compression run.
    Since:
    1.10
    • Constructor Summary

      Constructors 
      Constructor Description
      ScatterStatistics​(long compressionElapsed, long mergingElapsed)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      long getCompressionElapsed()
      The number of milliseconds elapsed in the parallel compression phase
      long getMergingElapsed()
      The number of milliseconds elapsed in merging the results of the parallel compression, the IO phase
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • compressionElapsed

        private final long compressionElapsed
      • mergingElapsed

        private final long mergingElapsed
    • Constructor Detail

      • ScatterStatistics

        ScatterStatistics​(long compressionElapsed,
                          long mergingElapsed)
    • 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:
        toString in class java.lang.Object