Added init and name methods, which will be common to all Plugins. Removed HandBrake specific methods.
15 lines
236 B
PHP
15 lines
236 B
PHP
<?php
|
|
|
|
interface RippingCluster_Worker_IPlugin {
|
|
|
|
public static function init();
|
|
|
|
public static function name();
|
|
|
|
public static function workerFunctions();
|
|
|
|
public static function rip(GearmanJob $job);
|
|
|
|
}
|
|
|
|
?>
|