Files
download-dispatcher/source/lib/DownloadDispatcher/Sync/IPlugin.class.php
Ben Roberts 579f735b49 Add Sync plugins
Add support for synchronising remote content before running the source
dispatchers. First plugin adds Rsync support.
2011-12-12 23:57:05 +00:00

16 lines
273 B
PHP

<?php
interface DownloadDispatcher_Sync_IPlugin extends DownloadDispatcher_IPlugin {
/**
* Process files recognised by this plugin
*
*
*/
public function run();
public static function create($config, $log, $instance);
}
?>