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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2449 - (hide annotations) (download)
Fri Mar 20 08:58:46 2015 UTC (9 years, 2 months ago) by torben
File size: 328 byte(s)
switch to maven
1 torben 467 package dk.thoerup.circuitbreaker.notification;
2 torben 450
3 torben 1161 import dk.thoerup.circuitbreaker.CircuitBreaker;
4    
5 torben 450 public class SystemOutNotifier implements Notifier {
6    
7 torben 1161 public void sendNotification(CircuitBreaker breaker, Event evnt) {
8     System.out.println("Circuitbreaker " + breaker.getName() + " : " + evnt.toString() );
9 torben 450
10     }
11    
12     }

  ViewVC Help
Powered by ViewVC 1.1.20