TYPO3 API  SVNRelease
ResponseListener.php
Go to the documentation of this file.
00001 <?php
00002 
00003 /*
00004  * This file is part of SwiftMailer.
00005  * (c) 2004-2009 Chris Corbyn
00006  *
00007  * For the full copyright and license information, please view the LICENSE
00008  * file that was distributed with this source code.
00009  */
00010 
00011 //@require 'Swift/Events/EventListener.php';
00012 //@require 'Swift/Events/ResponseEvent.php';
00013 
00014 /**
00015  * Listens for responses from a remote SMTP server.
00016  * @package Swift
00017  * @subpackage Events
00018  * @author Chris Corbyn
00019  */
00020 interface Swift_Events_ResponseListener extends Swift_Events_EventListener
00021 {
00022 
00023   /**
00024    * Invoked immediately following a response coming back.
00025    * @param Swift_Events_ResponseEvent $evt
00026    */
00027   public function responseReceived(Swift_Events_ResponseEvent $evt);
00028 
00029 }