Package gofer :: Package rmi :: Module async :: Class Succeeded
[hide private]
[frames] | no frames]

Class Succeeded

source code

AsyncReply --+    
             |    
    FinalReply --+
                 |
                Succeeded

Successful reply to asynchronous operation.

Instance Methods [hide private]
 
__init__(self, envelope) source code
bool
succeeded(self)
Get whether the reply indicates success.
source code
 
__str__(self) source code

Inherited from FinalReply: failed, notify, throw

Instance Variables [hide private]
object retval
The returned value.

Inherited from AsyncReply: any, origin, sn

Method Details [hide private]

__init__(self, envelope)
(Constructor)

source code 
Parameters:
  • envelope (Envelope) - The received envelope.
Overrides: AsyncReply.__init__

succeeded(self)

source code 

Get whether the reply indicates success.

Returns: bool
True when succeeded.
Overrides: FinalReply.succeeded
(inherited documentation)

__str__(self)
(Informal representation operator)

source code 
Overrides: AsyncReply.__str__