001package jmri.jmrix.ecos;
002
003/**
004 * Defines the interface for listening to traffic on the ECoS communications
005 * link.
006 *
007 * @author Bob Jacobsen Copyright (C) 2001
008 */
009public interface EcosListener extends jmri.jmrix.AbstractMRListener {
010
011    public void message(EcosMessage m);
012
013    void reply(EcosReply m);
014
015}