PHP Dokumentation: Function httprequestpool-socketperform
12. Januar 2010 von werner
HttpRequestPool::socketPerform
(PECL pecl_http >= 0.15.0)
HttpRequestPool::socketPerform — Perform socket actions
Beschreibung
protected bool HttpRequestPool::socketPerform ( void )
Returns TRUE until each request has finished its transaction.
Rückgabewerte
Returns TRUE until each request has finished its transaction.
Beispiele
Beispiel #1 A HttpRequestPool::socketPerform() example
<?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);
// handle response of finished request
}
return $result;
}
}
?>