class ResourceSubscription(resource.Resource): (source)
Undocumented
Method | __getstate__ |
Get persistent state for this ResourceSubscription. |
Method | __init__ |
Initialize. |
Method | booted |
Undocumented |
Method | connected |
I've connected to a publisher; I'll now send all my requests. |
Method | notConnected |
I can't connect to a publisher; I'll now reply to all pending requests. |
Method | render |
Render this request, from my server. |
Class Variable | isLeaf |
Signal if this IResource implementor is a "leaf node" or not. If True, getChildWithDefault will not be called on this Resource. |
Instance Variable | host |
Undocumented |
Instance Variable | pending |
Undocumented |
Instance Variable | port |
Undocumented |
Instance Variable | publisher |
Undocumented |
Instance Variable | waiting |
Undocumented |
Class Variable | _log |
Undocumented |
Inherited from Resource
:
Method | delEntity |
Undocumented |
Method | getChild |
Retrieve a 'child' resource from me. |
Method | getChildForRequest |
Undocumented |
Method | getChildWithDefault |
Retrieve a static or dynamically generated child resource from me. |
Method | getDynamicEntity |
Undocumented |
Method | getStaticEntity |
Undocumented |
Method | listDynamicEntities |
Undocumented |
Method | listDynamicNames |
Undocumented |
Method | listEntities |
Undocumented |
Method | listNames |
Undocumented |
Method | listStaticEntities |
Undocumented |
Method | listStaticNames |
Undocumented |
Method | putChild |
Register a static child. |
Method | reallyPutEntity |
Undocumented |
Method | render_HEAD |
Default handling of HEAD method. |
Class Variable | server |
Undocumented |
Instance Variable | children |
Undocumented |
twisted.web.resource.Resource.render
Render this request, from my server.
This will always be asynchronous, and therefore return NOT_DONE_YET. It spins off a request to the pb client, and either adds it to the list of pending issues or requests it immediately, depending on if the client is already connected.
twisted.web.resource.Resource.isLeaf