class documentation

class StatReloaderLoop(ReloaderLoop): (source)

View In Hierarchy

Undocumented

Method __enter__ Do any setup, then run one step of the watch to populate the initial filesystem state.
Method run_step Run one step for watching the filesystem. Called once to set up initial state, then repeatedly to update it.
Class Variable name Undocumented
Instance Variable mtimes Undocumented

Inherited from ReloaderLoop:

Method __exit__ Clean up any resources associated with the reloader.
Method __init__ Undocumented
Method log_reload Undocumented
Method restart_with_reloader Spawn a new Python interpreter with the same arguments as the current one, but running the reloader thread.
Method run Continually run the watch step, sleeping for the configured interval after each step.
Method trigger_reload Undocumented
Instance Variable exclude_patterns Undocumented
Instance Variable extra_files Undocumented
Instance Variable interval Undocumented
def __enter__(self) -> ReloaderLoop: (source)

Do any setup, then run one step of the watch to populate the initial filesystem state.

def run_step(self): (source)

Run one step for watching the filesystem. Called once to set up initial state, then repeatedly to update it.

Undocumented