Skip to content

Instantly share code, notes, and snippets.

@icambridge
Created February 5, 2012 11:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icambridge/1744882 to your computer and use it in GitHub Desktop.
Save icambridge/1744882 to your computer and use it in GitHub Desktop.
Example Gearman Job
<?php
class Net_Gearman_Job_Example extends Net_Gearman_Job_Common
{
public function run ($arg)
{
print $arg.PHP_EOL;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment