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

com.almworks.jira.structure.api.process.ProgressSink Maven / Gradle / Ivy

There is a newer version: 17.25.3
Show newest version
package com.almworks.jira.structure.api.process;

public interface ProgressSink {
  void setActivity(String i18nKey, Object... arguments);
  void initialize(int total);
  void increment(int units);
  default void increment() { increment(1); }
  void setDone(int units);
  void complete();
  boolean isCancelled();
  ProgressSink delegate(int units);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy