class documentation

class ResourceSubscription(resource.Resource): (source)

View In Hierarchy

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
def __getstate__(self): (source)
Get persistent state for this ResourceSubscription.
def __init__(self, host, port): (source)
def booted(self): (source)

Undocumented

def connected(self, publisher): (source)
I've connected to a publisher; I'll now send all my requests.
def notConnected(self, msg): (source)
I can't connect to a publisher; I'll now reply to all pending requests.
def render(self, request): (source)

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.

isLeaf: int = (source)
Signal if this IResource implementor is a "leaf node" or not. If True, getChildWithDefault will not be called on this Resource.
host = (source)

Undocumented

pending: list = (source)

Undocumented

port = (source)

Undocumented

publisher = (source)

Undocumented

waiting: int = (source)

Undocumented

_log = (source)

Undocumented