Kafka\SimpleProduce::setTimeOut PHP Метод

setTimeOut() публичный Метод

set request timeout
public setTimeOut ( integer $timeout = 100 ) : kafka\Produce
$timeout integer
Результат kafka\Produce
    public function setTimeOut($timeout = 100)
    {
        if ((int) $timeout) {
            $this->timeout = (int) $timeout;
        }
        return $this;
    }