Package com.db4o.events
Interface Event4<T extends EventArgs>
-
- All Known Implementing Classes:
Event4Impl,EventRegistryImpl.CommittedEvent
public interface Event4<T extends EventArgs>An event. Holds a list ofEventListener4objects which receiveEventListener4.onEvent(Event4, EventArgs)notifications whenever this event is triggered.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddListener(EventListener4<T> listener)Adds a new listener to the notification list..voidremoveListener(EventListener4<T> listener)Removes a previously registered listener from the notification list.
-
-
-
Method Detail
-
addListener
void addListener(EventListener4<T> listener)
Adds a new listener to the notification list..
-
removeListener
void removeListener(EventListener4<T> listener)
Removes a previously registered listener from the notification list.
-
-