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

no.finn.retriableconsumer.Restartable Maven / Gradle / Ivy

There is a newer version: 1.55
Show newest version
package no.finn.retriableconsumer;

import java.io.Closeable;

public interface Restartable extends Runnable, Closeable {

  /**
   * Check if this Runnable is alive. If not, it will be restarted.
   *
   * @return true if it is running, false if not.
   */
  boolean isRunning();

  String getName();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy