package com.ericfeminella.sql
{
import flash.events.SQLEvent;
/**
*
* Defines the contract for classes which must provide an
* API which handles <code>SQLEvent</code> objects dispatched
* via a <code>SQLConnection</code> instance
*
*/
public interface ISQLConnectionResponder
{
/**
*
* Handles a SQLEvent of type SQLEvent.OPEN which is dispatched
* when a SQLConnection.open(); method call completes successfully
*
* @param the SQLEvent instance which was dispatched
*
*/
function open(event:SQLEvent) : void;
/**
*
* Handles a SQLEvent of type SQLEvent.ATTACH which is dispatched
* when a SQLConnection.attach(); method call completes successfully
*
* @param the SQLEvent instance which was dispatched
*
*/
function attach(event:SQLEvent) : void;
/**
*
* Handles a SQLEvent of type SQLEvent.DETACH which is dispatched
* when a SQLConnection.detach(); method call completes successfully
*
* @param the SQLEvent instance which was dispatched
*
*/
function detach(event:SQLEvent) : void;
/**
*
* Handles a SQLEvent of type SQLEvent.ANALYZE which is dispatched
* when a SQLConnection.analyze(); method call completes successfully
*
* @param the SQLEvent instance which was dispatched
*
*/
function analyze(event:SQLEvent) : void;
/**
*
* Handles a SQLEvent of type SQLEvent.DEANALYZE which is dispatched
* when a SQLConnection.deanalyze(); method call completes successfully
*
* @param the SQLEvent instance which was dispatched
*
*/
function deanalyze(event:SQLEvent) : void;
/**
*
* Handles a SQLEvent of type SQLEvent.COMMIT which is dispatched
* when a SQLConnection.commit(); method call completes successfully
*
* @param the SQLEvent instance which was dispatched
*
*/
function commit(event:SQLEvent) : void;
/**
*
* Handles a SQLEvent of type SQLEvent.CLOSE which is dispatched
* when a SQLConnection.close(); method call completes successfully
*
* @param the SQLEvent instance which was dispatched
*
*/
function close(event:SQLEvent) : void;
/**
*
* Handles a SQLEvent of type SQLEvent.ROLLBACK which is dispatched
* when a SQLConnection.rollback(); method call completes successfully
*
* @param the SQLEvent instance which was dispatched
*
*/
function rollback(event:SQLEvent) : void;
/**
*
* Handles a SQLEvent of type SQLEvent.CLEAN which is dispatched
* when a SQLConnection.clean(); method call completes successfully
*
* @param the SQLEvent instance which was dispatched
*
*/
function clean(event:SQLEvent) : void;
/**
*
* Handles a SQLEvent of type SQLEvent.BEGIN which is dispatched
* when a SQLConnection.begin(); method call completes successfully
*
* @param the SQLEvent instance which was dispatched
*
*/
function begin(event:SQLEvent) : void;
}
}