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

technology.dice.dicewhere.downloader.destination.FileAcceptor Maven / Gradle / Ivy

There is a newer version: 1.3.12
Show newest version
package technology.dice.dicewhere.downloader.destination;

import java.net.URI;
import java.time.Instant;
import java.util.Optional;
import technology.dice.dicewhere.downloader.md5.MD5Checksum;
import technology.dice.dicewhere.downloader.stream.StreamConsumer;

public interface FileAcceptor {
  StreamConsumer getStreamConsumer(MD5Checksum originalFileMd5, Instant originalFileTimestamp);

  boolean destinationExists();

  boolean destinationWritable();

  Optional existingFileMd5();

  URI getUri();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy