Package | Description |
---|---|
nl.tudelft.simulation.event |
Provides classes and interfaces for asynchronous communication.
|
nl.tudelft.simulation.event.remote |
Modifier and Type | Method and Description |
---|---|
boolean |
EventProducer.addListener(EventListenerInterface listener,
EventType eventType)
adds the listener as weak reference to the listener.
|
boolean |
EventProducerInterface.addListener(EventListenerInterface listener,
EventType eventType)
adds a listener as strong reference to the BEGINNING of a queue of
listeners.
|
boolean |
EventProducer.addListener(EventListenerInterface listener,
EventType eventType,
boolean weak) |
boolean |
EventProducerInterface.addListener(EventListenerInterface listener,
EventType eventType,
boolean weak)
adds a listener to the BEGINNING of a queue of listeners.
|
boolean |
EventProducer.addListener(EventListenerInterface listener,
EventType eventType,
short position)
adds the listener as weak reference to the listener.
|
boolean |
EventProducerInterface.addListener(EventListenerInterface listener,
EventType eventType,
short position)
adds a listener as strong reference to the specified position of a queue
of listeners.
|
boolean |
EventProducer.addListener(EventListenerInterface listener,
EventType eventType,
short position,
boolean weak) |
boolean |
EventProducerInterface.addListener(EventListenerInterface listener,
EventType eventType,
short position,
boolean weak)
adds a listener to the specified position of a queue of listeners.
|
protected EventInterface |
EventProducer.fireEvent(EventListenerInterface listener,
EventInterface event)
fires the event to the listener.
|
boolean |
EventProducer.removeListener(EventListenerInterface listener,
EventType eventType) |
boolean |
EventProducerInterface.removeListener(EventListenerInterface listener,
EventType eventType)
removes the subscription of a listener for a specific event.
|
Modifier and Type | Interface and Description |
---|---|
interface |
RemoteEventListenerInterface
The RemoteEventListenerInterface provides a remote implementation of the
EventListenerInterface.
|
Modifier and Type | Class and Description |
---|---|
class |
RemoteEventListener
The RemoteEventListener class embodies a remoteEventListener.
|
Constructor and Description |
---|
RemoteEventListener(EventListenerInterface owner)
Constructs a new RemoteListener.
|
Copyright © 2002-2012 Delft University of Technology, the Netherlands. All Rights Reserved.