org.apache.cxf.event
Interface EventListener

All Superinterfaces:
java.util.EventListener

public interface EventListener
extends java.util.EventListener

Should be implemented by an object that wants to receive events.


Method Summary
 void processEvent(Event e)
          Invoked when an event occurs.
 

Method Detail

processEvent

void processEvent(Event e)
Invoked when an event occurs. The implementation of this method should return as soon as possible, to avoid blocking its event processor.

Parameters:
e - The Event to be processed.


Apache CXF