JanosVM v0.6.0 Java API Documentation: Uses of Class edu.utah.janosvm.sys.ListNode
|
JanosVM v0.6.0 Java API | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ListNode | |
edu.utah.janosvm.kit.comm.amiga | An inter-team communication facility modeled on the Amiga IPC system. |
edu.utah.janosvm.kit.comm.commspace | A tuple space communication mechanism for the JanosVM. |
edu.utah.janosvm.kit.management.team | An implementation of a TeamListHandler that converts TeamEvents to amiga style Messages. |
edu.utah.janosvm.sys | Provides the java interface to the JanosVM Team facilities. |
Uses of ListNode in edu.utah.janosvm.kit.comm.amiga |
Subclasses of ListNode in edu.utah.janosvm.kit.comm.amiga | |
class |
Facsimile
NOTE: Facsimile is used since the message will be copied into the other team instead of just sharing like a Message. |
class |
FaxPort
Local handle on a FaxPortBackEnd port. |
class |
FaxPortHandle
A handle for sending faxes to other teams. |
class |
Message
Base class for simple messages that can be sent between threads. |
class |
SignalHandler
A SignalHandler is a base class for handlers that will be called by a SignalDispatcher. |
Uses of ListNode in edu.utah.janosvm.kit.comm.commspace |
Subclasses of ListNode in edu.utah.janosvm.kit.comm.commspace | |
class |
CommHashtableHandle
A handle for a CommHashtable that may be in another Flow. |
class |
CommQueuePuller
A handle for the owner of the CommQueue to pull elements out of it. |
class |
CommQueuePusher
A handle for other flows to push elements onto a CommQueue. |
class |
CommSpaceHandle
A handle on a CommSpace. |
Uses of ListNode in edu.utah.janosvm.kit.management.team |
Subclasses of ListNode in edu.utah.janosvm.kit.management.team | |
class |
TeamListMessage
A message class that stores the values from a TeamEvent. |
Uses of ListNode in edu.utah.janosvm.sys |
Subclasses of ListNode in edu.utah.janosvm.sys | |
class |
ExportManager.ImportEnumerator
The ImportEnumerator is used to traverse the list of importers of an export. |
class |
Importable
An Importable is a safe, cross-process reference to a remote "Exportable" object. |
class |
Team
Peer object for a TeamBackEnd. |
class |
TeamHandle
Provides a safe handle to a Team. |
class |
TeamList
An Importable for TeamListBackEnd that just provides a path for callbacks. |
Fields in edu.utah.janosvm.sys declared as ListNode | |
ListNode |
ListNode.succ
The successor node in the list. |
ListNode |
ListNode.pred
The predecessor node in the list. |
ListNode |
List.head
The header for the list. |
ListNode |
List.tail
The tail node for the list. |
Methods in edu.utah.janosvm.sys that return ListNode | |
ListNode |
List.nodeAt(int index)
|
ListNode |
List.remHead()
Remove and return the node at the head of the list, or null if its empty. |
ListNode |
List.remTail()
Remove and return the node at the tail of the list, or null if its empty. |
Methods in edu.utah.janosvm.sys with parameters of type ListNode | |
void |
ListNode.append(ListNode ln)
Insert the given node directly after `this'. |
void |
ListNode.prepend(ListNode ln)
Insert the given node directly before `this'. |
void |
List.addHead(ListNode ln)
Add a node to the head of the list. |
void |
List.addTail(ListNode ln)
Add a node to the tail of the list. |
|
JanosVM v0.6.0 Java API | |||||||||
PREV NEXT | FRAMES NO FRAMES |