1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- namespace Mmoreramerino\GearmanBundle\Driver\Gearman;
- use Doctrine\Common\Annotations\Annotation;
- /**
- * Gearman annotations driver
- *
- * @author Marc Morera <marc@ulabox.com>
- */
- /**
- * @Annotation
- */
- final class Work extends Annotation {
- /**
- * Number of iterations specified for all jobs inside Work
- *
- * @var integer
- */
- public $name = NULL;
-
- /**
- * Description of Worker
- *
- * @var string
- */
- public $description = NULL;
-
- /**
- * Number of iterations specified for all jobs inside Work
- *
- * @var integer
- */
- public $iter = NULL;
-
- /**
- * Servers assigned for all jobs of this work to be executed
- *
- * @var mixed
- */
- public $servers = null;
- }
- /**
- * @Annotation
- */
- final class Job extends Annotation {
- /**
- * Method name to assign into job
- *
- * @var string
- */
- public $name = NULL;
-
- /**
- * Description of Job
- *
- * @var string
- */
- public $description = NULL;
-
- /**
- * Number of iterations specified for this job
- *
- * @var integer
- */
- public $iter = NULL;
-
- /**
- * Servers assigned for this job to be executed
- *
- * @var mixed
- */
- public $servers = null;
- }
|