|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjist.runtime.Event
public class Event
Stores the details of an entity invocation for processing at the appropriate simulation time.
Nested Class Summary | |
---|---|
static class |
Event.Continuation
Stores a continuation information for blocking event calls. |
static class |
Event.ContinuationFrame
Stores a single stack frame for event calls with continuation. |
static class |
Event.EventComparator
Comparator used to compare two events in terms of their timestamp. |
Field Summary | |
---|---|
java.lang.Object[] |
args
Arguments to be passed to entity method for processing. |
Event.Continuation |
cont
Any event continuation information. |
java.lang.reflect.Method |
method
Method to be invoked for event processing. |
EntityRef |
ref
Reference to entity that will receive the event. |
long |
time
Simulation time at which the event should be processed. |
Constructor Summary | |
---|---|
Event()
Simulation event empty constructor, used for pooling. |
|
Event(Event ev)
Copy constructor. |
|
Event(long time,
java.lang.reflect.Method method,
EntityRef ref,
java.lang.Object[] args)
Simulation event constructor. |
Method Summary | |
---|---|
boolean |
equals(java.lang.Object o)
Test object equality. |
java.lang.String |
getArgsString()
Return event arguments as string |
java.lang.String |
getClassString()
Return event target class as string. |
java.lang.String |
getContinuationString()
Return event continuation contents. |
java.lang.String |
getEntityString()
Return event target entity as string. |
java.lang.String |
getMethodString()
Return event target method as string. |
java.lang.String |
getModifiersString()
Return event target method modifiers as string. public, abstract and final are not interesting. |
java.lang.String |
getTimeString()
Return event time as string |
java.lang.String |
getTypeString()
Return event type as string. |
int |
hashCode()
Return entity reference hashcode. |
void |
set(long time,
java.lang.reflect.Method method,
EntityRef ref,
java.lang.Object[] args)
Simulation event assignment, used for pooling. |
java.lang.String |
toString()
Return string representation of Event. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public long time
public EntityRef ref
public java.lang.reflect.Method method
public java.lang.Object[] args
public Event.Continuation cont
Constructor Detail |
---|
public Event()
public Event(long time, java.lang.reflect.Method method, EntityRef ref, java.lang.Object[] args)
time
- simulation time at which the event should be processedmethod
- method to be invoked for event processingref
- entity reference to receive eventargs
- arguments to be passed to entity for processingpublic Event(Event ev)
ev
- event to copyMethod Detail |
---|
public void set(long time, java.lang.reflect.Method method, EntityRef ref, java.lang.Object[] args)
time
- simulation time at which the event should be processedmethod
- method to be invoked for event processingref
- entity reference to receive eventargs
- arguments to be passed to entity for processingpublic java.lang.String getTypeString()
public java.lang.String getTimeString()
public java.lang.String getModifiersString()
public java.lang.String getClassString()
public java.lang.String getMethodString()
public java.lang.String getArgsString()
public java.lang.String getContinuationString()
public java.lang.String getEntityString()
public java.lang.String toString()
toString
in class java.lang.Object
public boolean equals(java.lang.Object o)
equals
in class java.lang.Object
o
- object to perform equality test
public int hashCode()
hashCode
in class java.lang.Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |