Uses of Class
org.objectweb.proactive.ActiveObjectCreationException

Packages that use ActiveObjectCreationException
org.objectweb.proactive Provides the main classes for creating active objects and futures.  
org.objectweb.proactive.core.group Provides all classes needed to use group communications in ProActive.  
org.objectweb.proactive.core.group.spmd Provides classes needed to use SPMD model in ProActive.  
org.objectweb.proactive.core.node Defines the generic Nodes used in ProActive.  
 

Uses of ActiveObjectCreationException in org.objectweb.proactive
 

Methods in org.objectweb.proactive that throw ActiveObjectCreationException
static java.lang.Object ProActive.newActive(java.lang.String classname, java.lang.Object[] constructorParameters)
          Creates a new ActiveObject based on classname attached to a default node in the local JVM.
static java.lang.Object ProActive.newActive(java.lang.String classname, java.lang.Object[] constructorParameters, java.lang.String nodeURL)
          Creates a new ActiveObject based on classname attached to the node of the given URL.
static java.lang.Object ProActive.newActive(java.lang.String classname, java.lang.Object[] constructorParameters, Node node)
          Creates a new ActiveObject based on classname attached to the given node or on a default node in the local JVM if the given node is null.
static java.lang.Object ProActive.newActive(java.lang.String classname, java.lang.Object[] constructorParameters, Node node, Active activity, MetaObjectFactory factory)
          Creates a new ActiveObject based on classname attached to the given node or on a default node in the local JVM if the given node is null.
static java.lang.Object ProActive.newActive(java.lang.String classname, java.lang.Object[] constructorParameters, VirtualNode virtualnode)
          Creates a new set of active objects based on classname attached to the given virtualnode.
static java.lang.Object ProActive.newActive(java.lang.String classname, java.lang.Object[] constructorParameters, VirtualNode virtualnode, Active activity, MetaObjectFactory factory)
          Creates a new ActiveObject based on classname attached to the given virtualnode.
static Component ProActive.newActiveComponent(java.lang.String classname, java.lang.Object[] constructorParameters, Node node, Active activity, MetaObjectFactory factory, ComponentParameters componentParameters)
          Creates a new ProActive component over the specified base class, according to the given component parameters, and returns a reference on the component of type Component.
static Component ProActive.newActiveComponent(java.lang.String className, java.lang.Object[] constructorParameters, VirtualNode vn, ComponentParameters componentParameters)
          Creates a new ProActive component over the specified base class, according to the given component parameters, and returns a reference on the component of type Component.
static java.lang.Object ProActive.turnActive(java.lang.Object target)
          Turns the target object into an ActiveObject attached to a default node in the local JVM.
static java.lang.Object ProActive.turnActive(java.lang.Object target, java.lang.String nodeURL)
          Turns the target object into an Active Object and send it to the Node identified by the given url.
static java.lang.Object ProActive.turnActive(java.lang.Object target, Node node)
          Turns the target object into an Active Object and send it to the given Node or to a default node in the local JVM if the given node is null.
static java.lang.Object ProActive.turnActive(java.lang.Object target, Node node, Active activity, MetaObjectFactory factory)
          Turns the target object into an Active Object and send it to the given Node or to a default node in the local JVM if the given node is null.
static java.lang.Object ProActive.turnActive(java.lang.Object target, java.lang.String nameOfTargetType, Node node)
          Turns a Java object into an Active Object and send it to a remote Node or to a local node if the given node is null.
static java.lang.Object ProActive.turnActive(java.lang.Object target, java.lang.String nameOfTargetType, Node node, Active activity, MetaObjectFactory factory)
          Turns a Java object into an Active Object and send it to a remote Node or to a local node if the given node is null.
static java.lang.Object ProActive.turnActive(java.lang.Object target, java.lang.String nameOfTargetType, VirtualNode virtualnode)
          Turns a Java object into an Active Object and send it to remote Nodes mapped to the given virtualnode in the XML deployment descriptor.
static java.lang.Object ProActive.lookupActive(java.lang.String classname, java.lang.String url)
          Looks-up an active object previously registered in a RMI registry.
 

Uses of ActiveObjectCreationException in org.objectweb.proactive.core.group
 

Methods in org.objectweb.proactive.core.group that throw ActiveObjectCreationException
static java.lang.Object ProActiveGroup.newGroup(java.lang.String className, java.lang.Object[][] params)
          Creates an object representing a group (a typed group) and creates members on the default node.
static java.lang.Object ProActiveGroup.newGroup(java.lang.String className, java.lang.Object[][] params, java.lang.String nodeName)
          Creates an object representing a group (a typed group) and creates all members with params on the node.
static java.lang.Object ProActiveGroup.newGroup(java.lang.String className, java.lang.Object[][] params, java.lang.String[] nodeListString)
          Creates an object representing a group (a typed group) and creates members with params cycling on nodeList.
static java.lang.Object ProActiveGroup.newGroup(java.lang.String className, java.lang.Object[][] params, Node node)
          Creates an object representing a group (a typed group) and creates all members with params on the node.
static java.lang.Object ProActiveGroup.newGroup(java.lang.String className, java.lang.Object[][] params, Node[] nodeList)
          Creates an object representing a group (a typed group) and creates members with params cycling on nodeList.
static java.lang.Object ProActiveGroup.newGroup(java.lang.String className, java.lang.Object[][] params, VirtualNode virtualNode)
          Creates an object representing a group (a typed group) and creates members with params cycling on the nodes of the virtual node.
static java.lang.Object ProActiveGroup.turnActiveGroup(java.lang.Object ogroup)
          Turns the target object (a typed group) into an ActiveObject (an active typed group) attached to a default node in the local JVM.
static java.lang.Object ProActiveGroup.turnActiveGroup(java.lang.Object ogroup, Node node)
          Turns the target object (a typed group) into an ActiveObject (an active typed group) attached to a specified node.
static java.lang.Object ProActiveGroup.turnActiveGroup(java.lang.Object ogroup, java.lang.String nodeName)
          Turns the target object (a typed group) into an ActiveObject (an active typed group) attached to a specified node.
static java.lang.Object ProActiveGroup.newGroupBuildWithMultithreading(java.lang.String className, java.lang.Object[][] params)
          Creates an object representing a group (a typed group) and creates members on the default node.
static java.lang.Object ProActiveGroup.newGroupBuildWithMultithreading(java.lang.String className, java.lang.Object[][] params, Node[] nodeList)
          Creates an object representing a group (a typed group) and creates members with params cycling on nodeList.
static java.lang.Object ProActiveGroup.newGroupBuildWithMultithreading(java.lang.String className, java.lang.Object[][] params, java.lang.String[] nodeList)
          Creates an object representing a group (a typed group) and creates members with params cycling on nodeList.
static java.lang.Object ProActiveGroup.newGroupBuildWithMultithreading(java.lang.String className, java.lang.Object[][] params, VirtualNode virtualNode)
          Creates an object representing a group (a typed group) and creates members with params cycling on the nodes of the vitual node.
 

Uses of ActiveObjectCreationException in org.objectweb.proactive.core.group.spmd
 

Methods in org.objectweb.proactive.core.group.spmd that throw ActiveObjectCreationException
static java.lang.Object ProSPMD.newSPMDGroup(java.lang.String className, java.lang.Object[][] params, Node[] nodeList)
          Creates an object representing a group (a typed group) and creates members with params cycling on nodeList.
static java.lang.Object ProSPMD.newSPMDGroup(java.lang.String className, java.lang.Object[][] params, java.lang.String[] nodeList)
           
 

Uses of ActiveObjectCreationException in org.objectweb.proactive.core.node
 

Methods in org.objectweb.proactive.core.node that throw ActiveObjectCreationException
 java.lang.Object[] NodeImpl.getActiveObjects()
           
 java.lang.Object[] NodeImpl.getActiveObjects(java.lang.String className)
           
 java.lang.Object[] Node.getActiveObjects()
          Returns all activeObjects deployed on this Node
 java.lang.Object[] Node.getActiveObjects(java.lang.String className)
          Returns all activeObjects with the given name deployed on this Node or null if such objects do not exist
 



Copyright © April 2004 INRIA All Rights Reserved.