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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3211 by torben, Tue Jun 9 08:55:10 2015 UTC revision 3212 by torben, Thu Dec 28 09:34:47 2017 UTC
# Line 14  public class CompositeNotifier implement Line 14  public class CompositeNotifier implement
14                  children.add(notif);                  children.add(notif);
15          }          }
16    
17          public void sendNotification(CircuitBreaker breaker, Event evnt) {          public void sendNotification(CircuitBreaker<?> breaker, Event evnt) {
18                  for (Notifier notif : children) {                  for (Notifier notif : children) {
19                          notif.sendNotification(breaker, evnt);                          notif.sendNotification(breaker, evnt);
20                  }                  }

Legend:
Removed from v.3211  
changed lines
  Added in v.3212

  ViewVC Help
Powered by ViewVC 1.1.20