CI_Xmlrpc::timeout PHP Méthode

timeout() public méthode

Set Timeout
public timeout ( integer $seconds = 5 ) : void
$seconds integer
Résultat void
    public function timeout($seconds = 5)
    {
        if ($this->client !== NULL && is_int($seconds)) {
            $this->client->timeout = $seconds;
        }
    }