Coverage Report - com.ctrip.framework.apollo.ConfigChangeListener
 
Classes in this File Line Coverage Branch Coverage Complexity
ConfigChangeListener
N/A
N/A
1
 
 1  
 package com.ctrip.framework.apollo;
 2  
 
 3  
 import com.ctrip.framework.apollo.model.ConfigChangeEvent;
 4  
 
 5  
 /**
 6  
  * @author Jason Song(song_s@ctrip.com)
 7  
  */
 8  
 public interface ConfigChangeListener {
 9  
   /**
 10  
    * Invoked when there is any config change for the namespace.
 11  
    * @param changeEvent the event for this change
 12  
    */
 13  
   public void onChange(ConfigChangeEvent changeEvent);
 14  
 }