Uses of Interface
org.djutils.event.EventInterface
Package | Description |
---|---|
org.djutils.event |
Provides classes and interfaces for asynchronous communication.
|
org.djutils.event.remote |
EventProducer and EventListener extended for Remote access.
|
org.djutils.event.util |
Provides a subscription-based extension to Java's collection library.
|
-
Uses of EventInterface in org.djutils.event
Classes in org.djutils.event that implement EventInterface Modifier and Type Class Description class
Event
The Event class forms the reference implementation for the EventInterface.class
TimedEvent<T extends Comparable<T> & Serializable>
The TimedEvent is the reference implementation for a timed event.Methods in org.djutils.event that return EventInterface Modifier and Type Method Description protected EventInterface
EventProducer. fireEvent(EventInterface event)
Transmit an event to all interested listeners.EventInterface
EventProducerImpl. fireEvent(EventInterface event)
Transmit an event to all interested listeners.EventInterface
EventProducerImpl. fireEvent(EventListenerInterface listener, EventInterface event)
Transmit an event to a listener.Methods in org.djutils.event with parameters of type EventInterface Modifier and Type Method Description protected EventInterface
EventProducer. fireEvent(EventInterface event)
Transmit an event to all interested listeners.EventInterface
EventProducerImpl. fireEvent(EventInterface event)
Transmit an event to all interested listeners.EventInterface
EventProducerImpl. fireEvent(EventListenerInterface listener, EventInterface event)
Transmit an event to a listener.void
EventListenerInterface. notify(EventInterface event)
Notifies the event listener of an event. -
Uses of EventInterface in org.djutils.event.remote
Methods in org.djutils.event.remote that return EventInterface Modifier and Type Method Description protected EventInterface
RemoteEventProducer. fireEvent(EventInterface event)
Transmit an event to all interested listeners.Methods in org.djutils.event.remote with parameters of type EventInterface Modifier and Type Method Description protected EventInterface
RemoteEventProducer. fireEvent(EventInterface event)
Transmit an event to all interested listeners. -
Uses of EventInterface in org.djutils.event.util
Methods in org.djutils.event.util with parameters of type EventInterface Modifier and Type Method Description void
EventProducingCollection. notify(EventInterface event)
Notifies the event listener of an event.void
EventProducingList. notify(EventInterface event)
Notifies the event listener of an event.void
EventProducingSet. notify(EventInterface event)
Notifies the event listener of an event.