����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 3.14.144.145 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/builderbox/www/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/ |
Upload File : |
<?php namespace Guzzle\Http\Curl; use Guzzle\Common\HasDispatcherInterface; use Guzzle\Common\Exception\ExceptionCollection; use Guzzle\Http\Message\RequestInterface; /** * Interface for sending a pool of {@see RequestInterface} objects in parallel */ interface CurlMultiInterface extends \Countable, HasDispatcherInterface { const POLLING_REQUEST = 'curl_multi.polling_request'; const ADD_REQUEST = 'curl_multi.add_request'; const REMOVE_REQUEST = 'curl_multi.remove_request'; const MULTI_EXCEPTION = 'curl_multi.exception'; const BLOCKING = 'curl_multi.blocking'; /** * Add a request to the pool. * * @param RequestInterface $request Request to add * * @return CurlMultiInterface */ public function add(RequestInterface $request); /** * Get an array of attached {@see RequestInterface} objects * * @return array */ public function all(); /** * Remove a request from the pool. * * @param RequestInterface $request Request to remove * * @return bool Returns true on success or false on failure */ public function remove(RequestInterface $request); /** * Reset the state and remove any attached RequestInterface objects * * @param bool $hard Set to true to close and reopen any open multi handles */ public function reset($hard = false); /** * Send a pool of {@see RequestInterface} requests. * * @throws ExceptionCollection if any requests threw exceptions during the transfer. */ public function send(); }