class documentation
class ResourceSubscription(resource.Resource): (source)
Constructor: ResourceSubscription(host, port)
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 | not |
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 | is |
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 | del |
Undocumented |
| Method | get |
Retrieve a 'child' resource from me. |
| Method | get |
Deprecated in favor of getChildForRequest. |
| Method | get |
Retrieve a static or dynamically generated child resource from me. |
| Method | get |
Undocumented |
| Method | get |
Undocumented |
| Method | list |
Undocumented |
| Method | list |
Undocumented |
| Method | list |
Undocumented |
| Method | list |
Undocumented |
| Method | list |
Undocumented |
| Method | list |
Undocumented |
| Method | put |
Register a static child. |
| Method | really |
Undocumented |
| Method | render_ |
Default handling of HEAD method. |
| Class Variable | allowed |
Undocumented |
| Class Variable | server |
Undocumented |
| Instance Variable | children |
Undocumented |
overrides
twisted.web.resource.Resource.renderRender 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.
overrides
twisted.web.resource.Resource.isLeafSignal if this IResource implementor is a "leaf node" or not. If True, getChildWithDefault will not be called on this Resource.