/[projects]/miscJava/CircuitBreaker/src/main/java/dk/thoerup/circuitbreaker/notification/CompositeNotifier.java
ViewVC logotype

Annotation of /miscJava/CircuitBreaker/src/main/java/dk/thoerup/circuitbreaker/notification/CompositeNotifier.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1161 - (hide annotations) (download)
Mon Oct 4 17:36:43 2010 UTC (13 years, 8 months ago) by torben
Original Path: CircuitBreaker/src/dk/thoerup/circuitbreaker/notification/CompositeNotifier.java
File size: 488 byte(s)
If the Notifier gets a reference to the CircuitBreaker itself instead of the circuitbreaker's name then the same notifier instance can easily 
be shared across several circuitbreakers
1 torben 1049 package dk.thoerup.circuitbreaker.notification;
2    
3     import java.util.ArrayList;
4     import java.util.List;
5    
6 torben 1161 import dk.thoerup.circuitbreaker.CircuitBreaker;
7    
8 torben 1099 public class CompositeNotifier implements Notifier {
9 torben 1049
10     List<Notifier> children = new ArrayList<Notifier>();
11    
12     public void addNotifier(Notifier notif) {
13     children.add(notif);
14     }
15    
16 torben 1161 public void sendNotification(CircuitBreaker breaker, Event evnt) {
17 torben 1049 for (Notifier notif : children) {
18 torben 1161 notif.sendNotification(breaker, evnt);
19 torben 1049 }
20     }
21    
22     }

  ViewVC Help
Powered by ViewVC 1.1.20