| Package | org.springextensions.actionscript.rpc.net |
| SVN browsing | NetConnectionService.as |
| Fisheye | NetConnectionService.as |
| Class | public class NetConnectionService |
| Implements | IService |
Documentation reference: services
| Property | Defined by | ||
|---|---|---|---|
| netConnection : NetConnection
Returns the NetConnection used by this service
| NetConnectionService | ||
| Method | Defined by | ||
|---|---|---|---|
|
NetConnectionService(netConnection:NetConnection = null)
Creates a new NetConnectionService
| NetConnectionService | ||
|
call(methodName:String, ... parameters):IOperation
Invokes a method with the given method name and parameters on a (remote) object.
| NetConnectionService | ||
| netConnection | property |
netConnection:NetConnection [read-write]Returns the NetConnection used by this service
Implementation public function get netConnection():NetConnection
public function set netConnection(value:NetConnection):void
| NetConnectionService | () | constructor |
public function NetConnectionService(netConnection:NetConnection = null)Creates a new NetConnectionService
ParametersnetConnection:NetConnection (default = null) — the netconnection used by this service
|
| call | () | method |
public function call(methodName:String, ... parameters):IOperationInvokes a method with the given method name and parameters on a (remote) object.
ParametersmethodName:String — the name of the method to invoke
|
|
... parameters — the paramters passed to the invoked method
|
IOperation —
an operation for the invoked method
|