com.almworks.jira.structure.api.util.RunnableE 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.util;
import com.atlassian.annotations.PublicSpi;
@PublicSpi
public interface RunnableE {
void run() throws E;
default RunnableE andThen(RunnableE extends E> another) {
RunnableE first = this;
return () -> {
first.run();
another.run();
};
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy