Class MasterProgress

  • Direct Known Subclasses:
    OneProgress

    public class MasterProgress
    extends java.lang.Object
    Progress indicating how many promises need to finish (total), and how many had already finish (#fulfilled).
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private int done  
      private int fail  
      private int total  
    • Constructor Summary

      Constructors 
      Constructor Description
      MasterProgress​(int done, int fail, int total)  
    • Field Detail

      • done

        private final int done
      • fail

        private final int fail
      • total

        private final int total
    • Constructor Detail

      • MasterProgress

        public MasterProgress​(int done,
                              int fail,
                              int total)
    • Method Detail

      • getDone

        public int getDone()
      • getFail

        public int getFail()
      • getTotal

        public int getTotal()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object