|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface IProcessQueuedAction
This interface is implemented by a class that executes elements from the action queue.
| Method Summary | |
|---|---|
void |
processQueuedElements()
Process the elements of the ActionQueue
This is typically done by a code fragment like this
List |
| Method Detail |
|---|
void processQueuedElements()
ActionQueue
This is typically done by a code fragment like this
List elements = queue.getQueuedElements(getClass().getName());
for (QueuedActionElement elem : elements){
elem.process();
}
It is suggested that the element is removed from the queue after processing for memory
reasons. No element can be processed twice.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||