src.server
Interface EventReceiver

All Known Implementing Classes:
AlertDummy, EventHandlerUnit, LunchModule, RoomBookingModule, RSSModule, THSNewsModule

public interface EventReceiver

An interface describing an class that can receive events.

Version:
2005-maj-08

Method Summary
 void triggerEvent(java.lang.String eventId)
          Triggers an event with a specific id.
 

Method Detail

triggerEvent

public void triggerEvent(java.lang.String eventId)
Triggers an event with a specific id. An process can send out events to specified eventreceivers which can then act as they please. Normally this is used for time based reminders.

Parameters:
eventId - The event's id as defined when the event was registered.