com.hubspot.singularity.executor.task.LocalDownloadServiceFetcher Maven / Gradle / Ivy
The newest version!
package com.hubspot.singularity.executor.task;
import com.hubspot.deploy.S3Artifact;
import java.util.List;
public interface LocalDownloadServiceFetcher {
void downloadFiles(
List extends S3Artifact> s3Artifacts,
SingularityExecutorTask task
)
throws InterruptedException;
String getDownloadPath();
default void start() {}
default void stop() {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy