(PECL pecl_http >= 0.15.0)
HttpRequestPool::socketPerform — ソケットアクションを実行する
各リクエストがトランザクションを終了するまでの間、TRUE を返します。
各リクエストがトランザクションを終了するまでの間、TRUE を返します。
例1 HttpRequestPool::socketPerform() の例
<?php
class MyPool 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);
// 終了したリクエストのレスポンスを処理します。
}
return $result;
}
}
?>