Package | Description |
---|---|
ptolemy.domains.de.kernel |
The ptolemy.domains.de.kernel package.
|
Modifier and Type | Field and Description |
---|---|
protected java.util.HashMap<Actor,java.util.List<DEEvent>> |
DEDirector._actorsInExecution
Actors and their matching events currently in execution and waiting
for resources.
|
Modifier and Type | Method and Description |
---|---|
DEEvent |
DECQEventQueue.get()
Return the earliest DE event in the queue without removing it
from the queue.
|
DEEvent |
DEEventQueue.get()
Return the earliest DE event in this event queue.
|
DEEvent |
DECQEventQueue.take()
Dequeue the earliest DE event in this event queue.
|
DEEvent |
DEEventQueue.take()
Return the earliest DE event in this event queue.
|
Modifier and Type | Method and Description |
---|---|
int |
DEEvent.compareTo(DEEvent event)
Compare the tag and depth of this event with those of the argument
event for the order.
|
boolean |
DEEvent.hasTheSameTagAndDepthAs(DEEvent event)
Return true if this event has the same tag with the specified one,
and their depths are the same.
|
boolean |
DEEvent.hasTheSameTagAs(DEEvent event)
Return true if this event has the same tag as the argument DE event.
|
void |
DECQEventQueue.put(DEEvent event)
Put an event into the event queue.
|
void |
DEEventQueue.put(DEEvent event)
Enqueue a DE event into the event queue.
|
boolean |
DECQEventQueue.remove(DEEvent event)
Remove an event from the event queue and return true if
it was removed, and false if it was not in the queue.
|
boolean |
DEEventQueue.remove(DEEvent event)
Remove an event from the event queue and return true if
it was removed, and false if it was not in the queue.
|