HttpRequestPool::socketPerform Perform socket actions &reftitle.description; protected boolHttpRequestPool::socketPerform Returns TRUE until each request has finished its transaction. &reftitle.returnvalues; Returns TRUE until each request has finished its transaction. &reftitle.examples; A <function>HttpRequestPool::socketPerform</function> example 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; } } ?> ]]>