當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Swift_Events_EventObject類代碼示例

本文整理匯總了PHP中Swift_Events_EventObject的典型用法代碼示例。如果您正苦於以下問題:PHP Swift_Events_EventObject類的具體用法?PHP Swift_Events_EventObject怎麽用?PHP Swift_Events_EventObject使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Swift_Events_EventObject類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: _bubble

 /** Bubble $evt up the stack calling $target() on each listener */
 private function _bubble(Swift_Events_EventObject $evt, $target)
 {
     if (!$evt->bubbleCancelled() && ($listener = array_shift($this->_bubbleQueue))) {
         $listener->{$target}($evt);
         $this->_bubble($evt, $target);
     }
 }
開發者ID:EnmanuelCode,項目名稱:backend-laravel,代碼行數:8,代碼來源:SimpleEventDispatcher.php

示例2: __construct

 /**
  * Create a new CommandEvent for $source with $command.
  * @param Swift_Transport $source
  * @param string $command
  * @param array $successCodes
  */
 public function __construct(Swift_Transport $source, $command, $successCodes = array())
 {
     parent::__construct($source);
     $this->_command = $command;
     $this->_successCodes = $successCodes;
 }
開發者ID:eyumay,項目名稱:srms.psco,代碼行數:12,代碼來源:CommandEvent.php

示例3: __construct

 /**
  * Create a new ResponseEvent for $source and $response.
  *
  * @param Swift_Transport $source
  * @param string          $response
  * @param bool            $valid
  */
 public function __construct(Swift_Transport $source, $response, $valid = false)
 {
     parent::__construct($source);
     $this->_response = $response;
     $this->_valid = $valid;
 }
開發者ID:Ceciceciceci,項目名稱:MySJSU-Class-Registration,代碼行數:13,代碼來源:ResponseEvent.php

示例4: __construct

 /**
  * Create a new SendEvent for $source and $message.
  *
  * @param Swift_Transport    $source
  * @param Swift_Mime_Message $message
  */
 public function __construct(Swift_Transport $source, Swift_Mime_Message $message)
 {
     parent::__construct($source);
     $this->_message = $message;
     $this->_result = self::RESULT_PENDING;
 }
開發者ID:rrsc,項目名稱:beansbooks,代碼行數:12,代碼來源:SendEvent.php

示例5: __construct

 /**
  * Create a new TransportExceptionEvent for $transport.
  * @param Swift_Transport $transport
  * @param Swift_TransportException $ex
  */
 public function __construct(Swift_Transport $transport, Swift_TransportException $ex)
 {
     parent::__construct($transport);
     $this->_exception = $ex;
 }
開發者ID:rodolfobais,項目名稱:proylectura,代碼行數:10,代碼來源:TransportExceptionEvent.php


注:本文中的Swift_Events_EventObject類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。