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

com.github.drapostolos.adp4j.core.FileRemovedEvent Maven / Gradle / Ivy

Go to download

This library provides a Java SPI for polling directories on a REMOTE filesystem/ftp servers (etc) for changes (like file-Added/Removed/Modified).

The newest version!
package com.github.drapostolos.adp4j.core;

import com.github.drapostolos.adp4j.spi.FileElement;
import com.github.drapostolos.adp4j.spi.PolledDirectory;

/**
 * An event that represents a removed file in the {@link PolledDirectory}.
 *
 */
public final class FileRemovedEvent extends AbstractFileEvent {

	FileRemovedEvent(DirectoryPoller directoryPoller, PolledDirectory directory, FileElement file) {
		super(directoryPoller, directory, file);
	}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy