
package uk.co.wingpath.util;

/**
* Interface used for notifiying that something has occurred, for example that
* a task has finished.
*/
public interface Waiter
{
    /**
    * Called when the awaited occurrence has happened.
    */
    public void inform ();
}

