Package | flash.net |
Class | public class Responder |
Inheritance | Responder Object |
Language version: | ActionScript 3.0 |
Runtime version: |
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 this object, formatted according to locale-specific conventions.
| 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 version: |
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.
|