1 package org.lsst.ccs.bus;
2
3 /**
4 * @author bamade
5 */
6 // Date: 22/05/2014
7
8 public interface DataStatusListener extends EncodedStatusListens{
9 /**
10 * this method will be called if the object received as part of an <TT>EncodedDataStatus</TT> can be built (i.e its class is accessible by the current ClassLoader)
11 * @param timestamp
12 * @param key
13 * @param value
14 */
15 void onDataArrival(String source, long timestamp, String key, Object value) ;
16
17 }
18