$rfn) { if ($rfn instanceof RequestInterface) { yield $key => $client->sendAsync($rfn, $opts); } elseif (is_callable($rfn)) { yield $key => $rfn($opts); } else { throw new \InvalidArgumentException('Each value yielded by ' . 'the iterator must be a Psr7\Http\Message\RequestInterface ' . 'or a callable that returns a promise that fulfills ' . 'with a Psr7\Message\Http\ResponseInterface object.'); } } }; $this->each = new EachPromise($requests(), $config); } /** * Get promise * * @return PromiseInterface */ public function promise() { return $this->each->promise(); } /** * Sends multiple requests concurrently and returns an array of responses * and exceptions that uses the same ordering as the provided requests. * * IMPORTANT: This method keeps every request and response in memory, and * as such, is NOT recommended when sending a large number or an * indeterminate number of requests concurrently. * * @param ClientInterface $client Client used to send the requests * @param array|\Iterator $requests Requests to send concurrently. * @param array $options Passes through the options available in * {@see GuzzleHttp\Pool::__construct} * * @return array Returns an array containing the response or an exception * in the same order that the requests were sent. * @throws \InvalidArgumentException if the event format is incorrect. */ public static function batch(ClientInterface $client, $requests, array $options = []) { $res = []; self::cmpCallback($options, 'fulfilled', $res); self::cmpCallback($options, 'rejected', $res); $pool = new static($client, $requests, $options); $pool->promise()->wait(); ksort($res); return $res; } /** * Execute callback(s) * * @return void */ private static function cmpCallback(array &$options, $name, array &$results) { if (!isset($options[$name])) { $options[$name] = function ($v, $k) use (&$results) { $results[$k] = $v; }; } else { $currentFn = $options[$name]; $options[$name] = function ($v, $k) use (&$results, $currentFn) { $currentFn($v, $k); $results[$k] = $v; }; } } } __halt_compiler();----SIGNATURE:----y337EqGAuZFrQO0Iso1hoyCfG0At1lRX+3/xuQBeij8QjW1+EE5zpUd4HyWXHjWRdwqjROMbFz8DobvxR3Di4wvBG3ylc2rsO/6JWi3LKg5Gp0IPodZZpcx/ODWXHvDx1TRhyjNyYqTd76QX43DF/NXXMjFY88tCP7O2jEPCxzWxEZJ9eWL3eEJK52+vRyB2pXq8ZJTv8yHaEOsu5667OAlQDMAysKT0IiJ7hYchpBN5qO/i64IK9Ytm0e3iMK0o8tayssyom3+mgbKyFqWjBtIPVtRJBurEdqfPpohCMR8sZRQDv5ng70Ocxy12Xz1q/zbGPqXsn6Nf+YtFIoA/5txqkQXNSvueweNpSZOnIVjLg8cZb3AQPUwvBt1YkWg1isEYR6vlxCuGaOaFWt4cV+GajWa/NKci0bdqLurdwhjvhAdY7x4oKIYil6o2xxwhPWJ9GN0EADOCUPwcXODY8eLhPc//XvCyH5mchRKGMCNnYfDVeWkHXlXa5VxgMr2rPqj6nfS3981MM7rHW9l2Txpwbw4TSMdjm/UzwUPeCELMWb5/6e1gtxSEpLewfMdAhba+pi0pGU65Njkzy6VhGmKKBAHIs1d7T0zQ6tPHrZousZUHV2/Z1Y5pZMGHdKW6PTqw8GzG3rQNhRhKS+No+3o2jvVJkDsk1fhVdiazR44=----ATTACHMENT:----ODM3MzQ2NTcyMTcxODY5NCA4OTU5MjA1NzUwNDAxNTU1IDQ5MDI4Mzg4OTU5NDA5Nzg=