Coverage Report - com.ctrip.framework.apollo.internals.RepositoryChangeListener
 
Classes in this File Line Coverage Branch Coverage Complexity
RepositoryChangeListener
N/A
N/A
1
 
 1  
 package com.ctrip.framework.apollo.internals;
 2  
 
 3  
 import java.util.Properties;
 4  
 
 5  
 /**
 6  
  * @author Jason Song(song_s@ctrip.com)
 7  
  */
 8  
 public interface RepositoryChangeListener {
 9  
   /**
 10  
    * Invoked when config repository changes.
 11  
    * @param namespace the namespace of this repository change
 12  
    * @param newProperties the properties after change
 13  
    */
 14  
   public void onRepositoryChange(String namespace, Properties newProperties);
 15  
 }