class documentation

An IResource implementation which delegates responsibility for all resources hierarchically inferior to it to a WSGI application.

Method __init__ Undocumented
Method getChildWithDefault Reject attempts to retrieve a child resource. All path segments beyond the one which refers to this resource are handled by the WSGI application object.
Method putChild Reject attempts to add a child resource to this resource. The WSGI application object handles all path segments beneath this resource, so IResource children can never be found.
Method render Turn the request into the appropriate environ dict suitable to be passed to the WSGI application object and then pass it on.
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 _application The WSGI application object.
Instance Variable _reactor An IReactorThreads provider which will be passed on to _WSGIResponse to schedule calls in the I/O thread.
Instance Variable _threadpool A ThreadPool which will be passed on to _WSGIResponse to run the WSGI application object.
def __init__(self, reactor, threadpool, application): (source)

Undocumented

def getChildWithDefault(self, name, request): (source)

Reject attempts to retrieve a child resource. All path segments beyond the one which refers to this resource are handled by the WSGI application object.

def putChild(self, path, child): (source)

Reject attempts to add a child resource to this resource. The WSGI application object handles all path segments beneath this resource, so IResource children can never be found.

def render(self, request): (source)

Turn the request into the appropriate environ dict suitable to be passed to the WSGI application object and then pass it on.

The WSGI application object is given almost complete control of the rendering process. NOT_DONE_YET will always be returned in order and response completion will be dictated by the application object, as will the status, headers, and the response body.

Signal if this IResource implementor is a "leaf node" or not. If True, getChildWithDefault will not be called on this Resource.

_application = (source)

The WSGI application object.

_reactor = (source)

An IReactorThreads provider which will be passed on to _WSGIResponse to schedule calls in the I/O thread.

_threadpool = (source)

A ThreadPool which will be passed on to _WSGIResponse to run the WSGI application object.