001package com.dev9.mvnwatcher.event;
002
003import java.io.IOException;
004
005/**
006 * Created by IntelliJ IDEA.
007 * User: bbejeck
008 * Date: 2/15/12
009 * Time: 10:29 PM
010 */
011
012public interface DirectoryEventWatcher {
013    void start() throws IOException;
014
015    boolean isRunning();
016
017    void stop();
018
019}