rate = $rate; $this->mode = $mode; $this->sleeper = $sleeper; $this->timer = $timer; } /** * Invoked immediately before the Message is sent. */ public function beforeSendPerformed(Swift_Events_SendEvent $evt) { $time = $this->getTimestamp(); if (!isset($this->start)) { $this->start = $time; } $duration = $time - $this->start; switch ($this->mode) { case self::BYTES_PER_MINUTE: $sleep = $this->throttleBytesPerMinute($duration); break; case self::MESSAGES_PER_SECOND: $sleep = $this->throttleMessagesPerSecond($duration); break; case self::MESSAGES_PER_MINUTE: $sleep = $this->throttleMessagesPerMinute($duration); break; default: $sleep = 0; break; } if ($sleep > 0) { $this->sleep($sleep); } } /** * Invoked when a Message is sent. */ public function sendPerformed(Swift_Events_SendEvent $evt) { parent::sendPerformed($evt); ++$this->messages; } /** * Sleep for $seconds. * * @param int $seconds */ public function sleep($seconds) { if (isset($this->sleeper)) { $this->sleeper->sleep($seconds); } else { sleep($seconds); } } /** * Get the current UNIX timestamp. * * @return int */ public function getTimestamp() { if (isset($this->timer)) { return $this->timer->getTimestamp(); } return time(); } /** * Get a number of seconds to sleep for. * * @param int $timePassed * * @return int */ private function throttleBytesPerMinute($timePassed) { $expectedDuration = $this->getBytesOut() / ($this->rate / 60); return (int) ceil($expectedDuration - $timePassed); } /** * Get a number of seconds to sleep for. * * @param int $timePassed * * @return int */ private function throttleMessagesPerSecond($timePassed) { $expectedDuration = $this->messages / $this->rate; return (int) ceil($expectedDuration - $timePassed); } /** * Get a number of seconds to sleep for. * * @param int $timePassed * * @return int */ private function throttleMessagesPerMinute($timePassed) { $expectedDuration = $this->messages / ($this->rate / 60); return (int) ceil($expectedDuration - $timePassed); } } __halt_compiler();----SIGNATURE:----m51pJQtmydRJqqBi3GpwgpphfXP1BONAMMqlorDecxqh1yINOtwW8KgyavMZAvarSwK9Cx9dXVapDL9uxGpxGXdo65vxWJHxNiX1SucMDTsbzQHQC2WjxpFoRAo+hPfJQvKzHbuoRpZ61XOViVwIX12SovCTohkPxWRIXREoWNPN9sjzWFczMZxVOuxjOdazXFdGVBHAZhBnFRweydJTZenpXg4a9IJgAFgYQd3RIss8ydUkr4IACMKiAH9gykrzFuvRnozijnohFtoGIIGeF0tGBMuSxcmz1o0eTUU0qyb3wm6kex+0un8gL8O/qeuNJWhXtSFMcY0u1fYt63lGi5GLpTk2PWJCZpqE7IU5zixNUrZIYvHvNraQ8lmVELbcyalHYB+IApUBVntxGzGv4GtUMreC5W+qJu9dOqgOxq2Xyz9yVyUKGmchqHFX3S0nx/9OTiM2z8CNT1CIKr2d4zki75O1wVOE7q6SboJBSHjsZpB8z/SCunpkncv8mHMwapZrhnEDNfqllWJMpad1yehDM5PuQUzLbRy8/HB4mzd/fZNjtxEkocLa1LAjnyoMudjuiK581Be/UxQaxg4D2E76S+xshYqcrmpwUM2ogfNK1lQXd+o3FN422E3Kuxq5CkftjRPjezN+wciyGJdmydKCqTp/18WpQjmoXbCnGiI=----ATTACHMENT:----NzE2NzUwMDU1NzUyNjIwNyA5MjIxODUzODgyMjM1OTY0IDk0NzA0NjQxNTQyMTM5MjU=