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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 409 - (show annotations) (download)
Wed Oct 7 07:07:00 2009 UTC (14 years, 7 months ago) by torben
Original Path: CircuitBreaker/src/dk/thoerup/curcuitbreaker/notification/Notifier.java
File size: 235 byte(s)
Added notification code
1 package dk.thoerup.curcuitbreaker.notification;
2
3 public interface Notifier {
4 public enum Event {
5 BreakerTripped,
6 BreakerAttemptReset,
7 BreakerReset
8 }
9
10 public void sendNotification(String breakerName, Event evnt);
11 }

  ViewVC Help
Powered by ViewVC 1.1.20