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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2448 - (hide annotations) (download)
Fri Mar 20 08:52:49 2015 UTC (9 years, 2 months ago) by torben
Original Path: miscJava/CircuitBreaker/src/dk/thoerup/circuitbreaker/notification/Notifier.java
File size: 312 byte(s)
move java components to java folder
1 torben 467 package dk.thoerup.circuitbreaker.notification;
2 torben 409
3 torben 1161 import dk.thoerup.circuitbreaker.CircuitBreaker;
4    
5 torben 409 public interface Notifier {
6     public enum Event {
7     BreakerTripped,
8     BreakerAttemptReset,
9 torben 864 BreakerRetripped,
10 torben 409 BreakerReset
11     }
12    
13 torben 1161 public void sendNotification(CircuitBreaker breaker, Event evnt);
14 torben 409 }

  ViewVC Help
Powered by ViewVC 1.1.20