| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| RepositoryChangeListener |
|
| 1.0;1 |
| 1 | package com.ctrip.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 | } |