Summary of WebKit.AutoReloadingAppServer

You can also browse the complete source file or the generated documentation.

def getFAM(modules)

            class FAM:
                def name(self)
                def __init__(self)
                def close(self)
                def fd(self)
                def monitorFile(self, filepath)
                def pending(self)
                def nextFile(self)
                def callback(self, filepath, event)

            class FAM:
                def name(self)
                def __init__(self)
                def close(self)
                def fd(self)
                def monitorFile(self, filepath)
                def pending(self)
                def nextFile(self)


class AutoReloadingAppServer(AppServer):

    ## Init ##
    def __init__(self, path=None)
    def defaultConfig(self)
    def shutDown(self)

    ## Activation of AutoReload ##
    def activateAutoReload(self)
    def deactivateAutoReload(self)

    ## Restart methods ##
    def restartIfNecessary(self)
    def restart(self)
    def monitorNewModule(self, filepath, mtime=None)

    ## Internal methods ##
    def shouldRestart(self)
    def fileMonitorThreadLoop(self)
    def fileMonitorThreadLoopFAM(self, getmtime=os.path.getmtime)