Files
handbrake-cluster-webui/lib/RippingCluster/Worker/IPlugin.class.php
Ben Roberts 89ddcba363 Renamed the codebase to RippingCluster
Since the new design is engine agnostic, removed HandBrake from the
class names.
2010-08-25 21:46:50 +01:00

16 lines
325 B
PHP

<?php
interface RippingCluster_Worker_IPlugin {
public static function workerFunctions();
public static function rip(GearmanJob $job);
public function evaluateOption($name, $option = null);
public function callbackStdout($id, $data);
public function callbackStderr($id, $data);
}
?>