1700483044
1700483045
注意 设计原则只是一个理论,而不是一个带有刻度的标尺,因此在系统设计中不应该把它视为不可逾越的屏障,而是应该把它看成是一个方向标,尽量遵守,而不是必须恪守。
1700483046
1700483047
既然事件分发者这么重要,我们就仔细研读一下它的代码,如代码清单36-7所示。
1700483048
1700483049
代码清单36-7 事件分发者
1700483050
1700483051
public class EventDispatch implements Observer{
1700483052
1700483053
//单例模式
1700483054
1700483055
private final static EventDispatch dispatch=new EventDispatch();
1700483056
1700483057
//事件消费者
1700483058
1700483059
private Vector<EventCustomer>customer=new Vector<EventCustomer>();
1700483060
1700483061
//不允许生成新的实例
1700483062
1700483063
private EventDispatch(){
1700483064
1700483065
}
1700483066
1700483067
//获得单例对象
1700483068
1700483069
public static EventDispatch getEventDispathc(){
1700483070
1700483071
return dispatch;
1700483072
1700483073
}
1700483074
1700483075
//事件触发
1700483076
1700483077
public void update(Observable o,Object arg){
1700483078
1700483079
//事件的源头
1700483080
1700483081
Product product=(Product)arg;
1700483082
1700483083
//事件
1700483084
1700483085
ProductEvent event=(ProductEvent)o;
1700483086
1700483087
//处理者处理,这里是中介者模式的核心,可以是很复杂的业务逻辑
1700483088
1700483089
for(EventCustomer e:customer){
1700483090
1700483091
//处理能力是否匹配
1700483092
1700483093
for(EventCustomType t:e.getCustomType()){
[
上一页 ]
[ :1.700483044e+09 ]
[
下一页 ]