HttpRequestPool::socketPerform

(no version information, might be only in CVS)

HttpRequestPool::socketPerform -- Perform socket actions

Description

protectedbool HttpRequestPool::socketPerform ( void )

Returns TRUE until each request has finished its transaction.

Return Values

Returns TRUE until each request has finished its transaction.

Examples

Example 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;
    }
}
?>