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