Package pyamf :: Package remoting :: Package client :: Class ServiceMethodProxy
[hide private]
[frames] | no frames]

Class ServiceMethodProxy

source code


Serves as a proxy for calling a service method.


See Also: ServiceProxy.__getattr__

Instance Methods [hide private]
 
__init__(self, service, name)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
__call__(self, *args)
Inform the proxied service that this function has been called.
source code
 
__str__(self)
Returns the full service name, including the method name if there is one.
source code

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__

Instance Variables [hide private]
str or None name
The name of the method.
ServiceProxy service
The parent service.
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, service, name)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)

__str__(self)
(Informal representation operator)

source code 

Returns the full service name, including the method name if there is one.

Overrides: object.__str__