1 package org.lsst.ccs.plugin.jas3.trending;
2
3 /**
4 * A simple trending service which allows other subsystems to request that a particular
5 * trending quantity be displayed.
6 * @author tonyj
7 */
8 public interface TrendingService {
9 /**
10 * Show the trending quantity corresponding to the path.
11 * @param path For example new String[]{"ccs-refrig","CmpSucPrs"}
12 */
13 void show(String[] path);
14 }