(PECL pecl_http >= 0.15.0)
HttpRequestPool::socketPerform — Soket işlemleri bitene kadar beklenmesini sağlar
Her istek kendi işlemlerini tamamlayana kadar TRUE
ile döner.
Her istek kendi işlemlerini tamamlayana kadar TRUE
döndürür.
Örnek 1 - HttpRequestPool::socketPerform() örneği
<?php
class Havuz extends HttpRequestPool
{
public function send()
{
while ($this->socketPerform()) {
if (!$this->socketSelect()) {
throw new HttpSocketExcpetion;
}
}
}
protected final function socketPerform()
{
$result = parent::socketPerform();
foreach ($this->getFinishedRequests() as $r) {
$this->detach($r);
// istek tamamlandı yanıtını alalım
}
return $result;
}
}
?>