Modifier and Type | Field and Description |
---|---|
(package private) EtEventImpl[] |
EtContainer.holdEvents
Place to store references to events being put/dumped using JNI with local calls.
|
(package private) EtEventImpl[] |
EtContainer.putDumpEvents
Reference to events being put/dumped using normal calls.
|
(package private) EtEventImpl[] |
EtContainer.realEvents
Actual ET events with buffers/real memory.
|
Modifier and Type | Method and Description |
---|---|
EtEventImpl[] |
EtContainer.getEventArrayLocal()
Get an array containing events resulting from a call to
EtContainer.newEvents(AttachmentLocal, int, int, int, int, int) or
EtContainer.getEvents(AttachmentLocal, int, int, int) . |
(package private) EtEventImpl[] |
EtJniAccess.getEvents(long etId,
int attId,
int mode,
int sec,
int nsec,
int count)
Get events from the local, C-based ET system.
|
EtEventImpl[] |
EtContainer.getHoldEvents()
Get the array used to store references to events being put/dumped using JNI with local calls.
|
(package private) EtEventImpl[] |
EtJniAccess.newEvents(long etId,
int attId,
int mode,
int sec,
int nsec,
int count,
int size,
int group)
Get new (unused) events from a specified group of such events from the local, C-based ET system.
|
Modifier and Type | Method and Description |
---|---|
(package private) void |
EtJniAccess.dumpEvents(long etId,
int attId,
EtEventImpl[] evs,
int length)
Dump (dispose of) the given array of unwanted events back into the local, C-based ET system.
|
void |
EtContainer.holdLocalEvents(EtEventImpl[] evs)
This method is NOT for general use! Experts only!
Take the events obtained in
SystemCreate.getEvents(EtContainer)
and assign them to local storage. |
(package private) void |
EtContainer.holdNewEvents(EtEventImpl[] evs)
Take the new events obtained in
EtSystem.newEvents(EtContainer) or
EtSystem.getEvents(EtContainer) and assign them to local storage. |
(package private) void |
EtContainer.holdNewEvents(EtEventImpl[] evs,
int len)
Take the new events obtained in
EtSystem.newEvents(EtContainer) or
EtSystem.getEvents(EtContainer) and assign them to local storage. |
(package private) void |
EtJniAccess.putEvents(long etId,
int attId,
EtEventImpl[] evs,
int length)
Put the given array of events back into the local, C-based ET system.
|
Modifier and Type | Method and Description |
---|---|
void |
EtContainer.holdLocalEvents(java.util.List<EtEventImpl> list)
This method is NOT for general use! Experts only!
Take the new events obtained in
SystemCreate.newEvents(EtContainer)
and assign them to local storage. |
Constructor and Description |
---|
EtEventImpl(EtEventImpl ev)
Creates an event object by duplicating another.
|