TYPO3 API  SVNRelease
CommandListener.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/CommandEvent.php';
00013 
00014 /**
00015  * Listens for Transports to send commands to the server.
00016  * @package Swift
00017  * @subpackage Events
00018  * @author Chris Corbyn
00019  */
00020 interface Swift_Events_CommandListener extends Swift_Events_EventListener
00021 {
00022 
00023   /**
00024    * Invoked immediately following a command being sent.
00025    * @param Swift_Events_ResponseEvent $evt
00026    */
00027   public function commandSent(Swift_Events_CommandEvent $evt);
00028 
00029 }