/[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 864 - (hide annotations) (download)
Sun Jun 20 21:54:53 2010 UTC (13 years, 11 months ago) by torben
Original Path: CircuitBreaker/src/dk/thoerup/circuitbreaker/notification/Notifier.java
File size: 256 byte(s)
Differentiate against a normal trip and a retrip from half-open back to open
1 torben 467 package dk.thoerup.circuitbreaker.notification;
2 torben 409
3     public interface Notifier {
4     public enum Event {
5     BreakerTripped,
6     BreakerAttemptReset,
7 torben 864 BreakerRetripped,
8 torben 409 BreakerReset
9     }
10    
11     public void sendNotification(String breakerName, Event evnt);
12     }

  ViewVC Help
Powered by ViewVC 1.1.20