com.github.akurilov.commons.concurrent.InitRunnable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-commons Show documentation
Show all versions of java-commons Show documentation
Common functionality Java library
package com.github.akurilov.commons.concurrent;
/**
A {@link Runnable} which can be initialized and should be initialized before being invoked.
*/
public interface InitRunnable
extends Initializable, Runnable {
}