1 package org.lsst.ccs.bus;
2
3 /**
4 * A Command which is broadcast and should never be waited upon (asynchronous calls only).
5 * @author bamade
6 */
7 // Date: 07/07/2014
8
9 public class PingCommand extends ModuleInvokerCommand{
10 public PingCommand() {
11 //TODO : change the key (there is not need of it) and the Level
12 super("",0, "*", "ping", new Object[0]) ;
13 }
14 }