gov.nasa.arc.brahms.vm.api.components
Interface IEventMessageListener


public interface IEventMessageListener

The IEventMessageListener is an interface used to register for events send to the event notifier. Whenever an event is send to the event notifier the event message listener is notified by invoking its onEvent method passing it the event. The listener implementation can then handle the event properly.


Method Summary
 void onEvent(IEventMessage evt)
          onEvent is invoked when a new event is send to the event notifier.
 

Method Detail

onEvent

void onEvent(IEventMessage evt)
onEvent is invoked when a new event is send to the event notifier.

Parameters:
evt - the published IEventMessage
See Also:
IEventMessage