Basic HTML version of Foils prepared July 5 98

Foil 42 JDCE MessageQueue

From FMS: Forces Modeling and Simulation Handout JSU HPC Summer Institute for Undergraduates, Jackson MS -- June 15 1998. by Wojtek Furmanski, Subhash Nair, Tom Pulikal


1 The jdceMessageQueue is implemented as a Linked List for faster operations of addition/removal of messages.
2 The message queue provides for reporting availability of data on the queuebesides providing for returning the queue Contents as a stream of bytes or an array of Strings.
3 The queue has a in-lined class the QueueEnumerator which provides an Enumeration of the QueueContents.
4 The queueWidget has pointers to the preceeding Element and the elements successor.
5 class QueueWidget {
6 Object object;
7 QueueWidget prev;
8 QueueWidget next;
9
10 QueueWidget(Object object,
11 QueueWidget queueWidget1, QueueWidget queueWidget2) {
12 this.object = object;
13 prev = queueWidget1;
14 next = queueWidget2;
15 }
16 }
17 Besides the operations mentioned above, the queue provides for handling priority messages expressed by the addItemToTop() method.

in Table To:


© Northeast Parallel Architectures Center, Syracuse University, npac@npac.syr.edu

If you have any comments about this server, send e-mail to webmaster@npac.syr.edu.

Page produced by wwwfoil on Sat Nov 28 1998