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

com.almworks.jira.structure.api.util.RunnableE Maven / Gradle / Ivy

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

import com.atlassian.annotations.PublicSpi;

@PublicSpi
public interface RunnableE {
  void run() throws E;

  default RunnableE andThen(RunnableE another) {
    RunnableE first = this;
    return () -> {
      first.run();
      another.run();
    };
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy