Files
handbrake-cluster-webui/lib/RippingCluster/Worker/IPlugin.class.php
Ben Roberts de04fb5978 Updated Worker Plugin interface
Added init and name methods, which will be common to all Plugins.
Removed HandBrake specific methods.
2010-08-25 22:36:17 +01:00

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);
}
?>