Package oracle.simplefan
Interface FanEventListener
-
- All Superinterfaces:
java.util.EventListener
- All Known Subinterfaces:
FanUpEventListener
public interface FanEventListener extends java.util.EventListener
- Since:
- 11.2
- Version:
- $Header: dbjava/simplefan/src/java/oracle/simplefan/FanEventListener.java /main/2 2009/07/06 13:04:13 rhward Exp $
- Author:
- dsurber
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handleEvent(LoadAdvisoryEvent event)
Handle the event.void
handleEvent(NodeDownEvent event)
Handle the event.void
handleEvent(ServiceDownEvent event)
Handle the event.
-
-
-
Method Detail
-
handleEvent
void handleEvent(ServiceDownEvent event)
Handle the event. This method should return quickly. If it cannot do so, then it should start its work in another thread. If this method does not return quickly, it will delay processing of this and subsequent FAN events. The argument can be captured.- Parameters:
event
- the attributes of the FAN event.
-
handleEvent
void handleEvent(NodeDownEvent event)
Handle the event. This method should return quickly. If it cannot do so, then it should start its work in another thread. If this method does not return quickly, it will delay processing of this and subsequent FAN events. The argument can be captured.- Parameters:
event
- the attributes of the FAN event.
-
handleEvent
void handleEvent(LoadAdvisoryEvent event)
Handle the event. This method should return quickly. If it cannot do so, then it should start its work in another thread. If this method does not return quickly, it will delay processing of this and subsequent FAN events. The argument can be captured.- Parameters:
event
- the attributes of the FAN event.
-
-