public function Client::getCurlMulti

Get the curl multi object to be used internally by the client for transferring requests.

Return value

CurlMultiInterface

Overrides ClientInterface::getCurlMulti

1 call to Client::getCurlMulti()
Client::send in drupal/core/vendor/guzzle/http/Guzzle/Http/Client.php
Sends a single request or an array of requests in parallel

File

drupal/core/vendor/guzzle/http/Guzzle/Http/Client.php, line 393

Class

Client
HTTP client

Namespace

Guzzle\Http

Code

public function getCurlMulti() {
  if (!$this->curlMulti) {
    $this->curlMulti = CurlMulti::getInstance();
  }
  return $this->curlMulti;
}