interface documentation
class IPerspective(Interface): (source)
Known implementations: twisted.spread.pb.Avatar
per*spec*tive, n. : The relationship of aspects of a subject to each other and to a whole: 'a perspective of history'; 'a need to view the problem in the proper perspective'.
This is a Perspective Broker-specific wrapper for an avatar. That is to say, a PB-published view on to the business logic for the system's concept of a 'user'.
The concept of attached/detached is no longer implemented by the framework. The realm is expected to implement such semantics if needed.
Method | perspective |
This method is called when a network message is received. |
This method is called when a network message is received.
Parameters | |
broker | The Perspective Broker. |
message:str | The name of the method called by the other end. |
args:list in jelly format | The arguments that were passed by the other end. It is recommend that you use the `unserialize' method of the broker to decode this. |
kwargs:dict in jelly format | The keyword arguments that were passed by the other end. It is recommended that you use the `unserialize' method of the broker to decode this. |
Returns | |
A jelly list. | It is recommended that you use the `serialize' method of the broker on whatever object you need to return to generate the return value. |