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

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 s3Artifacts,
    SingularityExecutorTask task
  )
    throws InterruptedException;

  String getDownloadPath();

  default void start() {}

  default void stop() {}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy