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

org.snapscript.studio.agent.event.ProgressEvent Maven / Gradle / Ivy

The newest version!
package org.snapscript.studio.agent.event;

public class ProgressEvent extends PongEvent {

   protected ProgressEvent(Builder builder) {
      super(builder);
   }
   
   public static class Builder extends PongEvent.Builder {
   
      public Builder(String process) {
         super(process);
      }
      
      @Override
      public ProgressEvent build() {
         return new ProgressEvent(this);
      }
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy