Example #1
0
 /**
  * Set timeout to wait for content to read
  *
  * @param int $seconds  Seconds to wait for a frame
  * @param int $milliseconds Milliseconds to wait for a frame
  * @return void
  *
  * @deprecated use $client->getConnection()->setReadTimeout()
  */
 public function setReadTimeout($seconds, $milliseconds = 0)
 {
     $this->connection->setReadTimeout($seconds, $milliseconds);
 }