当前位置: 首页>>代码示例>>PHP>>正文


PHP RequestInterface::dispatch方法代码示例

本文整理汇总了PHP中Guzzle\Http\Message\RequestInterface::dispatch方法的典型用法代码示例。如果您正苦于以下问题:PHP RequestInterface::dispatch方法的具体用法?PHP RequestInterface::dispatch怎么用?PHP RequestInterface::dispatch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Guzzle\Http\Message\RequestInterface的用法示例。


在下文中一共展示了RequestInterface::dispatch方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: readRequestBody

 /**
  * Read data from the request body and send it to curl
  *
  * @param resource $ch     Curl handle
  * @param resource $fd     File descriptor
  * @param int      $length Amount of data to read
  *
  * @return string
  */
 public function readRequestBody($ch, $fd, $length)
 {
     $read = '';
     if ($this->request->getBody()) {
         $read = $this->request->getBody()->read($length);
         if ($this->emitIo) {
             $this->request->dispatch('curl.callback.read', array('request' => $this->request, 'read' => $read));
         }
     }
     return !$read ? '' : $read;
 }
开发者ID:creazy412,项目名称:vmware-win10-c65-drupal7,代码行数:20,代码来源:RequestMediator.php

示例2: readRequestBody

 /**
  * Read data from the request body and send it to curl
  *
  * @param resource $ch     Curl handle
  * @param resource $fd     File descriptor
  * @param int      $length Amount of data to read
  *
  * @return string
  */
 public function readRequestBody($ch, $fd, $length)
 {
     if (!($body = $this->request->getBody())) {
         return '';
     }
     $read = (string) $body->read($length);
     if ($this->emitIo) {
         $this->request->dispatch('curl.callback.read', array('request' => $this->request, 'read' => $read));
     }
     return $read;
 }
开发者ID:adrianoaguiar,项目名称:magento-elasticsearch-module,代码行数:20,代码来源:RequestMediator.php

示例3: fromRequest

 public function fromRequest(RequestInterface $request, $context = array(), array $params = array())
 {
     if (is_resource($context)) {
         $this->contextOptions = stream_context_get_options($context);
         $this->context = $context;
     } elseif (is_array($context) || !$context) {
         $this->contextOptions = $context;
         $this->createContext($params);
     } elseif ($context) {
         throw new InvalidArgumentException('$context must be an array or resource');
     }
     $request->dispatch('request.before_send', array('request' => $request, 'context' => $this->context, 'context_options' => $this->contextOptions));
     $this->setUrl($request);
     $this->addDefaultContextOptions($request);
     $this->addSslOptions($request);
     $this->addBodyOptions($request);
     $this->addProxyOptions($request);
     return $this->createStream($params)->setCustomData('request', $request)->setCustomData('response_headers', $this->getLastResponseHeaders());
 }
开发者ID:Ryu0621,项目名称:SaNaVi,代码行数:19,代码来源:PhpStreamRequestFactory.php

示例4: beforeSend

 /**
  * Prepare for sending
  *
  * @param RequestInterface $request Request to prepare
  * @throws \Exception on error preparing the request
  */
 protected function beforeSend(RequestInterface $request)
 {
     try {
         // Fix Content-Length and Transfer-Encoding collisions
         if ($request->hasHeader('Transfer-Encoding') && $request->hasHeader('Content-Length')) {
             $request->removeHeader('Transfer-Encoding');
         }
         $request->setState(RequestInterface::STATE_TRANSFER);
         $request->dispatch('request.before_send', array('request' => $request));
         if ($request->getState() != RequestInterface::STATE_TRANSFER) {
             // Requests might decide they don't need to be sent just before transfer (e.g. CachePlugin)
             $this->remove($request);
             if ($request->getState() == RequestInterface::STATE_COMPLETE) {
                 $this->successful[] = $request;
             }
         } else {
             // Add the request curl handle to the multi handle
             $this->checkCurlResult(curl_multi_add_handle($this->multiHandle, $this->createCurlHandle($request)->getHandle()));
         }
     } catch (\Exception $e) {
         // Queue the exception to be thrown when sent
         $this->removeErroredRequest($request, $e);
     }
 }
开发者ID:creazy412,项目名称:vmware-win10-c65-drupal7,代码行数:30,代码来源:CurlMulti.php

示例5: beforeSend

 /**
  * Prepare for sending
  *
  * @param RequestInterface $request Request to prepare
  */
 protected function beforeSend(RequestInterface $request)
 {
     try {
         $request->setState(RequestInterface::STATE_TRANSFER);
         $request->dispatch('request.before_send', array('request' => $request));
         if ($request->getState() != RequestInterface::STATE_TRANSFER) {
             // Requests might decide they don't need to be sent just before
             // transfer (e.g. CachePlugin)
             $this->remove($request);
         } else {
             if ($request->getParams()->get('queued_response')) {
                 // Queued responses do not need to be sent using curl
                 $this->remove($request);
                 $request->setState(RequestInterface::STATE_COMPLETE);
             } else {
                 // Add the request's curl handle to the multi handle
                 $this->checkCurlResult(curl_multi_add_handle($this->multiHandle, $this->createCurlHandle($request)->getHandle()));
             }
         }
     } catch (\Exception $e) {
         $this->removeErroredRequest($request, $e);
     }
 }
开发者ID:MicroSDHC,项目名称:justinribeiro.com-examples,代码行数:28,代码来源:CurlMulti.php


注:本文中的Guzzle\Http\Message\RequestInterface::dispatch方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。