alwaysRun = $alwaysRun; } /** * @return bool */ public function getAlwaysRun() { return $this->alwaysRun; } /** * @param bool */ public function setBackground($background) { $this->background = $background; } /** * @return bool */ public function getBackground() { return $this->background; } /** * @param AgentContainer */ public function setContainer(AgentContainer $container) { $this->container = $container; } /** * @return AgentContainer */ public function getContainer() { return $this->container; } /** * @param AgentEnvironment */ public function setEnvironment(AgentEnvironment $environment) { $this->environment = $environment; } /** * @return AgentEnvironment */ public function getEnvironment() { return $this->environment; } /** * @param bool */ public function setIgnoreExitStatus($ignoreExitStatus) { $this->ignoreExitStatus = $ignoreExitStatus; } /** * @return bool */ public function getIgnoreExitStatus() { return $this->ignoreExitStatus; } /** * @param AgentScript */ public function setScript(AgentScript $script) { $this->script = $script; } /** * @return AgentScript */ public function getScript() { return $this->script; } /** * @param string */ public function setTimeout($timeout) { $this->timeout = $timeout; } /** * @return string */ public function getTimeout() { return $this->timeout; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AgentTaskRunnable::class, 'Google_Service_Batch_AgentTaskRunnable');