Package | flash.net |
Class | public class Responder |
Inheritance | Responder ![]() |
Language Version: | ActionScript 3.0 |
Runtime Versions: | 1.0, 9 |
NetConnection.call()
to handle return
values from the server related to the success or failure of
specific operations. When working with
NetConnection.call()
,
you may encounter a network operation fault specific to the current operation
or a fault related to the current connection status. Operation errors target
the Responder object instead of the NetConnection object for easier error handling.
See also
Method | Defined By | ||
---|---|---|---|
Creates a new Responder object. | Responder | ||
![]() | Indicates whether an object has a specified property defined. | Object | |
![]() | Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | |
![]() | Indicates whether the specified property exists and is enumerable. | Object | |
![]() | Sets the availability of a dynamic property for loop operations. | Object | |
![]() | Returns the string representation of the specified object. | Object | |
![]() | Returns the primitive value of the specified object. | Object |
Responder | () | Constructor |
public function Responder(result:Function, status:Function = null)
Language Version: | ActionScript 3.0 |
Runtime Versions: | 1.0, 9 |
Creates a new Responder object. You pass a Responder object to
NetConnection.call()
to handle return values
from the server. You may pass
null
for either or
both parameters.
result:Function — The function invoked if the call to the server succeeds and returns a result. | |
status:Function (default = null ) — The function invoked if the server returns an error. |