View Javadoc

1   package org.lsst.ccs.bus;
2   
3   /**
4    * an  interface by with a Subsystem marks its presence on the bus:
5    * start of a subsystem, end or response to a pint.
6    * @author bamade
7    */
8   // Date: 07/07/2014
9   
10  public interface SubsystemToken {
11      boolean isMaster() ;
12      boolean isSlave() ;
13  }