Since the new design is engine agnostic, removed HandBrake from the class names.
16 lines
325 B
PHP
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);
|
|
}
|
|
|
|
?>
|