View Javadoc

1   package org.lsst.ccs.bus;
2   
3   /**
4    * @author bamade
5    */
6   // Date: 22/05/2014
7   
8   public interface KeyValueStatusListener extends EncodedStatusListens{
9       /**
10       * listeners will receive a <TT>EncodedDataStatus</TT> split along key-values (values being of a simple type)
11       * @param timeStamp
12       * @param key
13       * @param value
14       * @param commonID calls having the same "commonID" are extracted from the same Encoded object.
15       */
16      void onKeyValueStatusDecomposition(String source, long timeStamp, String key, Object value, int commonID) ;
17  }