001package jmri.jmrix.tams; 002 003/** 004 * Defines the interface for listening to traffic on the Tams communications 005 * link. 006 * 007 * Based on work by Bob Jacobsen 008 * 009 * @author Kevin Dickerson Copyright (C) 2012 010 */ 011public interface TamsListener extends jmri.jmrix.AbstractMRListener { 012 013 void message(TamsMessage m); 014 015 void reply(TamsReply m); 016} 017 018