com.almworks.jira.structure.api.process.ProgressSink Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structure-api Show documentation
Show all versions of structure-api Show documentation
Public API for the Structure Plugin for JIRA
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