Part of twisted.manhole.service View Source View In Hierarchy
| Method | __init__ | Undocumented |
| Method | __getstate__ | Undocumented |
| Method | attached | A client has attached -- welcome them and add them to the list. |
| Method | detached | Undocumented |
| Method | runInConsole | Convience method to "runInConsole with my stuff". |
| Method | console | Pass a message to my clients' console. |
| Method | receiveExplorer | Pass an Explorer on to my clients. |
| Method | perspective_do | Evaluate the given expression, with output to the console. |
| Method | perspective_explore | Browse the object obtained by evaluating the identifier. |
| Method | perspective_watch | Watch the object obtained by evaluating the identifier. |
| Method | _cbResult | Undocumented |
| Method | _cbClientCapable | Undocumented |
| Method | _ebClientCapable | Undocumented |
Inherited from Avatar:
| Method | perspectiveMessageReceived | This method is called when a network message is received. |
Evaluate the given expression, with output to the console.
The result is stored in the local variable '_', and its repr() string is sent to the console as a "result" message.Browse the object obtained by evaluating the identifier.
The resulting ObjectLink is passed back through the client's receiveBrowserObject method.Watch the object obtained by evaluating the identifier.
Whenever I think this object might have changed, I will pass an ObjectLink of it back to the client's receiveBrowserObject method.