initialPollDelay = $initialPollDelay; } /** * @return string */ public function getInitialPollDelay() { return $this->initialPollDelay; } /** * Maximum time between two subsequent poll requests. Default value: 45 * seconds. * * @param string $maxPollDelay */ public function setMaxPollDelay($maxPollDelay) { $this->maxPollDelay = $maxPollDelay; } /** * @return string */ public function getMaxPollDelay() { return $this->maxPollDelay; } /** * Multiplier to gradually increase delay between subsequent polls until it * reaches max_poll_delay. Default value: 1.5. * * @param float $pollDelayMultiplier */ public function setPollDelayMultiplier($pollDelayMultiplier) { $this->pollDelayMultiplier = $pollDelayMultiplier; } /** * @return float */ public function getPollDelayMultiplier() { return $this->pollDelayMultiplier; } /** * Total polling timeout. Default value: 5 minutes. * * @param string $totalPollTimeout */ public function setTotalPollTimeout($totalPollTimeout) { $this->totalPollTimeout = $totalPollTimeout; } /** * @return string */ public function getTotalPollTimeout() { return $this->totalPollTimeout; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(LongRunning::class, 'Google_Service_ServiceNetworking_LongRunning');