001package jmri.jmrix.dcc4pc; 002 003/** 004 * Defines the interface for listening to traffic on the DCC4PC communications 005 * link. 006 * 007 * @author Kevin Dickerson Copyright (C) 2001 008 * @author Bob Jacobsen Copyright (C) 2012 009 * 010 */ 011public interface Dcc4PcListener extends jmri.jmrix.AbstractMRListener { 012 013 void message(Dcc4PcMessage m); 014 015 void reply(Dcc4PcReply m); 016 017 void handleTimeout(Dcc4PcMessage m); 018}