public void processFile(FileCopyDetailsInternal details) { if (details.isDirectory()) { visitDir(details); } else { visitFile(details); } }
public void processFile(FileCopyDetailsInternal details) { if (details.isDirectory()) { visitDir(details); } else { writeOriginalFile(details); writeGzippedFile(details); } }
@Override public void processFile(@Nonnull FileCopyDetailsInternal details) { LOG.info("CopyAction Processing " + details); if (details.isDirectory()) { visitDir(details); } else { visitFile(details); } }
@Override public void processFile(FileCopyDetailsInternal details) { LOG.info("CopyAction Scanning " + details); }
void processFile(FileCopyDetailsInternal details);