1 package org.lsst.ccs.bus;
2
3 /**
4 * Interface to receive commands, implemented by subsystems
5 *
6 * @author aubourg
7 *
8 */
9
10 public interface CommandListener {
11 public void onCommand(Command m);
12
13 public void onReply(CommandReply r);
14
15 public void onAck(CommandAck a);
16
17 }