Package | com.ericfeminella.air.cairngorm.business |
Interface | public 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
Method | Defined by | ||
---|---|---|---|
fault(error:SQLError):void
Handles a
SQLService invocation asynchronous
fault
| ISQLResponder | ||
result(evt:SQLResult):void
Handles a
SQLService invocation asynchronous
result
| ISQLResponder |
fault | () | method |
public function fault(error:SQLError):void
Handles a SQLService
invocation asynchronous
fault
error:SQLError — service invocation SQLError instance
|
result | () | method |
public function result(evt:SQLResult):void
Handles a SQLService
invocation asynchronous
result
evt:SQLResult — service invocation SQLResult instance
|