All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.snapscript.common.CompleteProgress Maven / Gradle / Ivy

package org.snapscript.common;

public class CompleteProgress implements Progress {
   
   @Override
   public boolean done(T phase) {
      return false;
   }

   @Override
   public boolean wait(T phase) {
      return true;
   }

   @Override
   public boolean wait(T phase, long duration) {
      return true;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy