view commitwatcher/poller.py @ 33:9a76064ea527

stub
author Jeff Hammel <jhammel@mozilla.com>
date Sun, 13 Oct 2013 19:08:46 -0700
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