*/ interface WorkerContextAwareInterface { /** * Called from the worker, meaning the task is being processed by the worker. * * @return mixed */ public function applyWorkerContext(); /** * Is the task being processed by the worker? * * @return mixed */ public function isWorkerContext(); }