
public class TimerListenerB implements ITimerListener {

    public void notify(int count) {
        System.out.println(" B receives " + count);
    }
}
