view commitwatcher/poller.py @ 44:4f8fe143b977

whitespace
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 06 Nov 2013 23:08:20 -0800
parents 630aaf102ce8
children
line wrap: on
line source

"""
poller/daemon-like service to continuously check the repo
"""

import time

class CommitPoller(object):

    def __init__(self, fetcher, period=300):
        self.fetcher = fetcher
        self.period = period

    def poll(self):
        """poll"""
        

    def start(self):
        """poll forever"""
        while True:

    __call__ = start