Add support for synchronising remote content before running the source dispatchers. First plugin adds Rsync support.
16 lines
273 B
PHP
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);
|
|
|
|
}
|
|
|
|
?>
|