Sets the maximum number of messages to send per second (0 to disable).
$this
public function setMaxPerSecond(float $rate) : static { if (0 >= $rate) { $rate = 0; } $this->rate = $rate; $this->lastSent = 0; return $this; }