Packagecom.ericfeminella.air.cairngorm.business
Interfacepublic interface ISQLResponder

ISQLResponder defines the contract for classes which must provide a mechanism for handling asynchronous SQLService callbacks.

Conceptually ISQLResponder is very similar to that of the mx.rpc.IResponder interface, however the signature of the operations defined by ISQLResponder are slightly different in that they are specific to Adobe AIR types (SQLResult and SQLError)

See also

flash.data.SQLResult
flash.errors.SQLError
mx.rpc.IResponder


Public Methods
 MethodDefined by
  
fault(error:SQLError):void
Handles a SQLService invocation asynchronous fault
ISQLResponder
  
result(evt:SQLResult):void
Handles a SQLService invocation asynchronous result
ISQLResponder
Method detail
fault()method
public function fault(error:SQLError):void

Handles a SQLService invocation asynchronous fault

Parameters
error:SQLError — service invocation SQLError instance
result()method 
public function result(evt:SQLResult):void

Handles a SQLService invocation asynchronous result

Parameters
evt:SQLResult — service invocation SQLResult instance