de.undercouch.gradle.tasks.download.internal.Job Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-download-task Show documentation
Show all versions of gradle-download-task Show documentation
Adds a download task to Gradle that displays progress information
The newest version!
package de.undercouch.gradle.tasks.download.internal;
import java.io.IOException;
/**
* An asynchronous job executed by a {@link WorkerExecutorHelper}
* @author Michel Kraemer
*/
public interface Job {
/**
* Execute the job
* @throws IOException if the job failed
*/
void run() throws IOException;
}