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 not​Connected 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​Leaf 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​Entity Undocumented
Method get​Child Retrieve a 'child' resource from me.
Method get​Child​For​Request Undocumented
Method get​Child​With​Default Retrieve a static or dynamically generated child resource from me.
Method get​Dynamic​Entity Undocumented
Method get​Static​Entity Undocumented
Method list​Dynamic​Entities Undocumented
Method list​Dynamic​Names Undocumented
Method list​Entities Undocumented
Method list​Names Undocumented
Method list​Static​Entities Undocumented
Method list​Static​Names Undocumented
Method put​Child Register a static child.
Method really​Put​Entity 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