一個簡單的觀察者模式例子
一:下面的這個類是核心類
public class NotificationCenter {
//static reference for singleton
private static NotificationCenter _instance;
private static NotificationCenter _instance2;
private HashMap<String, ArrayList<NotificationDelegate>> registredObjects;
//default c'tor for singleton
private NotificationCenter(){
registredObjects = new HashMap<>();
}
//returning the reference
public static synchronized NotificationCenter defaultCenter(){
if(_instance == null)
_instance = new NotificationCenter();
return _instance;
}
//returning the reference
public static synchronized NotificationCenter defaultCenterNew(){
if(_instance2 == null)
_instance2 = new NotificationCenter();
return _instance2;
}
public synchronized void addFucntionForNotification(String notificationName, NotificationDelegate delegate){
ArrayList<NotificationDelegate> list = registredObjects.get(notificationName);
if(list == null) {
list = new ArrayList<>();
registredObjects.put(notificationName, list);
}
list.add(delegate);
}
public synchronized void removeFucntionForNotification(String notificationName, NotificationDelegate r){
if(registredObjects == null){
return ;
}
ArrayList<NotificationDelegate> list = registredObjects.get(notificationName);
if(list != null) {
list.remove(r);
}
}
public synchronized void postNotificationName(String notificationName, Object obj){
ArrayList<NotificationDelegate> list = registredObjects.get(notificationName);
// LogUtils.showLog(“==========”,” ” + list);
if(list != null) {
for(NotificationDelegate r: list){
r.update(notificationName,obj);
// LogUtils.showLog(“==========”,” upadate “);
}
}
}
// public synchronized void postNotification(Object obj){
// for(String name: registredObjects.keySet()){
// ArrayList list = registredObjects.get(name);
// if(list!= null){
// for(NotificationDelegate r: list)
// r.update(“”,obj);
// }
// }
// }
}
二:
/**
* Created by dongwanlin on 2016/6/2.
*/
public interface NotificationDelegate {
public void update(String name, Object obj);
}
三:
( 1 )傳送
SmmApplication.center.postNotificationName(FinalConstant.AutoQuotation_Finish, categoryId);
(2)接收
private void registerListener() {
final Gson gson = new Gson();
// 實時更新監聽器
delegate = new NotificationDelegate() {
@Override
public void update(String name, Object obj) {
if (name.equals(FinalConstant.AutoQuotation_Finish)) {
s_page = 1;
getData();
}
}
};
if (SmmApplication.center != null) { SmmApplication.center.addFucntionForNotification(FinalConstant.AutoQuotation_Finish,delegate);
}
}
@Override
public void onDestroy() {
super.onDestroy();
if (SmmApplication.center != null) {
SmmApplication.center.removeFucntionForNotification(FinalConstant.AutoQuotation_Finish, delegate);
}
}
相關文章
- 最簡單的通知方式 - 觀察者模式模式
- 簡單講解觀察者設計模式設計模式
- 簡說設計模式——觀察者模式設計模式
- 極簡設計模式-觀察者模式設計模式
- 5分鐘通過一個例子理解觀察者模式和釋出訂閱模式的區別模式
- 觀察者模式模式
- 設計模式之觀察者模式(一)設計模式
- 【程式碼簡述設計模式】----- 觀察者模式設計模式
- Java中的設計模式(一):觀察者模式Java設計模式
- PHP觀察者模式PHP模式
- 觀察者模式(2)模式
- Unity——觀察者模式Unity模式
- 觀察者模式-將訊息通知給觀察者模式
- 記一次觀察者模式的使用模式
- 進擊的觀察者模式模式
- Spring中的觀察者模式Spring模式
- 一個簡單的「IOC」例子
- 設計模式 —— 觀察者模式設計模式
- 設計模式(觀察者模式)設計模式
- 設計模式----觀察者模式設計模式
- 【設計模式】觀察者模式設計模式
- 設計模式——觀察者模式設計模式
- 設計模式中的觀察者模式設計模式
- observer-觀察者模式Server模式
- 重構 - 觀察者模式模式
- 18_觀察者模式模式
- PHP-觀察者模式PHP模式
- 大話--觀察者模式模式
- PHP 之觀察者模式PHP模式
- redux與觀察者模式Redux模式
- 觀察者模式介紹模式
- 設計模式走一遍---觀察者模式設計模式
- 來一波原生的觀察者模式 | MutationObserver模式Server
- JS中的觀察者模式DEMOJS模式
- PHP設計模式-觀察者模式PHP設計模式
- Java設計模式-觀察者模式Java設計模式
- 行為型模式:觀察者模式模式
- 設計模式解析:觀察者模式設計模式
- 行為型模式--觀察者模式模式