Packagehessian.client
Classpublic class HessianOperation
InheritanceHessianOperation Inheritance mx.rpc.AbstractOperation

The HessianOperation class is an AbstractOperation used exclusively by HessianServices.

See also

hessian.client.HessianService


Public Properties
 PropertyDefined by
  returnType : Class
The return type to which results will be cast.
HessianOperation
Public Methods
 MethodDefined by
  
send(... args):AsyncToken
Invokes the operation on the remote service.
HessianOperation
Property detail
returnTypeproperty
returnType:Class  [read-write]

The return type to which results will be cast. Optional.

Implementation
    public function get returnType():Class
    public function set returnType(value:Class):void
Method detail
send()method
public override function send(... args):AsyncToken

Invokes the operation on the remote service. The return value is an AsyncToken which can be used to retrieve the result of the invocation. The lastResult property may also be used.

Parameters
... args — The arguments to be sent.

Returns
AsyncToken — The AsyncToken that may be used to retrieve the result of the invocation.