Collaboration diagram for org.objectweb.proactive.core.runtime.LocalNode:
Public Member Functions | ||||
LocalNode (String nodeName, String jobId, ProActiveSecurityManager securityManager, String virtualNodeName) | ||||
ArrayList< UniqueID > | getActiveObjectsId () | |||
| ||||
void | setActiveObjects (ArrayList< UniqueID > activeObjects) | |||
set the list of active objects contained by the node | ||||
String | getJobId () | |||
| ||||
void | setJobId (String jobId) | |||
| ||||
String | getName () | |||
| ||||
void | setName (String name) | |||
| ||||
ProActiveSecurityManager | getSecurityManager () | |||
| ||||
void | setSecurityManager (ProActiveSecurityManager securityManager) | |||
| ||||
String | getVirtualNodeName () | |||
| ||||
void | setVirtualNodeName (String virtualNodeName) | |||
| ||||
void | terminateActiveObjects () | |||
ArrayList | getActiveObjects () | |||
void | unregisterBody (UniqueID bodyID) | |||
Unregisters the specified UniqueID from the node. | ||||
void | registerBody (UniqueID bodyID) | |||
Registers the specified body in the node. | ||||
void | terminate () | |||
Object | setProperty (String key, String value) | |||
Put the specified key value in this property list. | ||||
String | getProperty (String key) | |||
Searches for the property with the specified key in this property list. |
This class is a runtime representation of a node and should not be used outside a runtime
Definition at line 50 of file LocalNode.java.
void org.objectweb.proactive.core.runtime.LocalNode.setActiveObjects | ( | ArrayList< UniqueID > | activeObjects | ) |
set the list of active objects contained by the node
activeObjects | active objects to set. |
Definition at line 93 of file LocalNode.java.
Referenced by org.objectweb.proactive.core.runtime.ProActiveRuntimeImpl.createLocalNode().
void org.objectweb.proactive.core.runtime.LocalNode.unregisterBody | ( | UniqueID | bodyID | ) |
Unregisters the specified UniqueID
from the node.
bodyID | The UniqueID to remove |
Definition at line 200 of file LocalNode.java.
void org.objectweb.proactive.core.runtime.LocalNode.registerBody | ( | UniqueID | bodyID | ) |
Registers the specified body in the node.
In fact it is the UniqueID
of the body that is attached to the node.
bodyID | The body to register |
Definition at line 209 of file LocalNode.java.
Object org.objectweb.proactive.core.runtime.LocalNode.setProperty | ( | String | key, | |
String | value | |||
) |
Put the specified key value in this property list.
key | the key to be placed into this property list. | |
value | the value corresponding to key. |
null
if it did not have one. Definition at line 242 of file LocalNode.java.
String org.objectweb.proactive.core.runtime.LocalNode.getProperty | ( | String | key | ) |
Searches for the property with the specified key in this property list.
The method returns null
if the property is not found.
key | the hashtable key. |
Definition at line 252 of file LocalNode.java.