Uses of Class
org.objectweb.proactive.core.ProActiveException

Packages that use ProActiveException
org.objectweb.proactive Provides the main classes for creating active objects and futures.  
org.objectweb.proactive.core.body Provides all classes used for implementing the active part of an active object.  
org.objectweb.proactive.core.body.ft.protocols Defines specific behavior for each implemented fault-tolerance protocol.  
org.objectweb.proactive.core.body.ft.protocols.cic.managers Defines active object behavior for the CIC protocol.  
org.objectweb.proactive.core.body.ft.protocols.pmlrb.managers Defines active object behavior for the PML protocol.  
org.objectweb.proactive.core.body.future Provides the definition and implementation of the future object.  
org.objectweb.proactive.core.body.http HTTP implementation of the remote Body
org.objectweb.proactive.core.body.ibis IBIS implementation of the remote Body
org.objectweb.proactive.core.body.jini The body of an active object act as a hub of communication with other remote objects.  
org.objectweb.proactive.core.body.migration Defines the migration primitive of ProActive.  
org.objectweb.proactive.core.body.proxy **For internal use only** Defines the proxy associated to any ProActive Stub of an active Object.  
org.objectweb.proactive.core.body.request Defines the request messages based of the common message layer.  
org.objectweb.proactive.core.body.rmi The body of an active object act as a hub of communication with other remote objects.  
org.objectweb.proactive.core.component.adl This package and sub-packages provide a customization of the standard Fractal ADL for ProActive.  
org.objectweb.proactive.core.component.config This package contains the code that configures the membranes of the components : it configures the controllers and the interceptors.  
org.objectweb.proactive.core.descriptor Provides all classes needed for using XML Deployment Descriptors
org.objectweb.proactive.core.descriptor.data Provides all classes needed to create java objects related to XML Deployment Descriptor.  
org.objectweb.proactive.core.descriptor.services Provides classes to start JVM acquisition services like RMI lookup service on a ProActiveRuntime, P2P ProActiveRuntime acquisition service, or Fault Tolerance service.  
org.objectweb.proactive.core.event The active object created with ProActive generated events on demand when a listener registers to one component of the active object.  
org.objectweb.proactive.core.node Defines the generic Nodes used in ProActive.  
org.objectweb.proactive.core.runtime Defines all classes needed to build a ProActiveRuntime.  
org.objectweb.proactive.core.runtime.http HTTP implementation of ProActiveRuntime
org.objectweb.proactive.core.runtime.ibis Ibis implementation of ProActiveRuntime
org.objectweb.proactive.core.runtime.jini JINI implementation of ProActiveRuntime.  
org.objectweb.proactive.core.runtime.rmi RMI implementation of ProActiveRuntime
org.objectweb.proactive.core.util **For internal use only** Contains accessory utility classes.  
org.objectweb.proactive.ext.security.exceptions   
org.objectweb.proactive.p2p.service Peer-to-Peer Infrastructure.  
 

Uses of ProActiveException in org.objectweb.proactive
 

Subclasses of ProActiveException in org.objectweb.proactive
 class ActiveObjectCreationException
          An exception thrown when a problem occurs during the creation of an ActiveObject see active object creation documentation
 

Methods in org.objectweb.proactive that throw ProActiveException
static void ProActive.newMain(java.lang.String classname, java.lang.String[] mainParameters, Node node)
          Launches the main method of the main class through the node node
static void ProActive.newRemote(java.lang.String classname, Node node)
          Creates an instance of the remote class.
static void ProActive.waitFor(java.lang.Object future, long timeout)
          Blocks the calling thread until the object future is available or until the timeout expires.
static ProActiveDescriptor ProActive.getProactiveDescriptor()
          Returns a ProActiveDescriptor that gives an object representation of the XML document located at the url given by proactive.pad system's property.
static ProActiveDescriptor ProActive.getProactiveDescriptor(java.lang.String xmlDescriptorUrl)
          Returns a ProActiveDescriptor that gives an object representation of the XML document located at the given url.
static void ProActive.registerVirtualNode(VirtualNode virtualNode, java.lang.String registrationProtocol, boolean replacePreviousBinding)
          Registers locally the given VirtualNode in a registry such RMIRegistry or JINI Lookup Service or HTTP registry.
static VirtualNode ProActive.lookupVirtualNode(java.lang.String url)
          Looks-up a VirtualNode previously registered in a registry(RMI or JINI or HTTP or IBIS) The registry where to look for is fully determined with the protocol included in the url
static void ProActive.unregisterVirtualNode(VirtualNode virtualNode)
          Unregisters the virtualNode previoulsy registered in a registry such as JINI or RMI.
static int ProActive.waitForAny(java.util.Vector futures, long timeout)
          Blocks the calling thread until one of the futures in the vector is available or until the timeout expires.
static void ProActive.waitForAll(java.util.Vector futures, long timeout)
          Blocks the calling thread until all futures in the vector are available or until the timeout expires.
static void ProActive.waitForTheNth(java.util.Vector futures, int n, long timeout)
          Blocks the calling thread until the N-th of the futures in the vector is available.
 

Uses of ProActiveException in org.objectweb.proactive.core.body
 

Methods in org.objectweb.proactive.core.body that throw ProActiveException
protected  void BodyAdapterImpl.construct(RemoteBody remoteBody)
           
protected  void BodyAdapterForwarder.construct(BodyAdapterForwarder localBody, BodyAdapter remoteBody, UniqueID id)
           
 

Uses of ProActiveException in org.objectweb.proactive.core.body.ft.protocols
 

Methods in org.objectweb.proactive.core.body.ft.protocols that throw ProActiveException
 int FTManager.init(AbstractBody owner)
          Initialize the FTManager.
 void FTManager.termination()
          Unregister this activity from the fault-tolerance mechanism.
 

Uses of ProActiveException in org.objectweb.proactive.core.body.ft.protocols.cic.managers
 

Methods in org.objectweb.proactive.core.body.ft.protocols.cic.managers that throw ProActiveException
 int HalfFTManagerCIC.init(AbstractBody owner)
           
 int FTManagerCIC.init(AbstractBody owner)
           
 

Uses of ProActiveException in org.objectweb.proactive.core.body.ft.protocols.pmlrb.managers
 

Methods in org.objectweb.proactive.core.body.ft.protocols.pmlrb.managers that throw ProActiveException
 int HalfFTManagerPMLRB.init(AbstractBody owner)
          FTManager initialization.
 int FTManagerPMLRB.init(AbstractBody owner)
          FTManager initialization.
 

Uses of ProActiveException in org.objectweb.proactive.core.body.future
 

Methods in org.objectweb.proactive.core.body.future that throw ProActiveException
 void FutureProxy.waitFor(long timeout)
          Blocks the calling thread until the future object is available or the timeout expires
 void Future.waitFor(long timeout)
          Blocks the calling thread until the future object is available or the timeout expires
 void FuturePool.waitForReply(long timeout)
           
 

Uses of ProActiveException in org.objectweb.proactive.core.body.http
 

Constructors in org.objectweb.proactive.core.body.http that throw ProActiveException
HttpBodyAdapter(UniversalBody body)
           
 

Uses of ProActiveException in org.objectweb.proactive.core.body.ibis
 

Constructors in org.objectweb.proactive.core.body.ibis that throw ProActiveException
IbisBodyAdapter(IbisRemoteBody remoteBody)
           
IbisBodyAdapter(UniversalBody body)
           
 

Uses of ProActiveException in org.objectweb.proactive.core.body.jini
 

Constructors in org.objectweb.proactive.core.body.jini that throw ProActiveException
JiniBodyAdapter(RemoteBody remoteBody)
           
JiniBodyAdapter(UniversalBody body)
           
 

Uses of ProActiveException in org.objectweb.proactive.core.body.migration
 

Subclasses of ProActiveException in org.objectweb.proactive.core.body.migration
 class MigrationException
           
 

Uses of ProActiveException in org.objectweb.proactive.core.body.proxy
 

Methods in org.objectweb.proactive.core.body.proxy that throw ProActiveException
protected  UniversalBody UniversalBodyProxy.createLocalBody(ConstructorCall bodyConstructorCall, ConstructorCall reifiedObjectConstructorCall, Node node)
           
protected  UniversalBody UniversalBodyProxy.createRemoteBody(ConstructorCall bodyConstructorCall, Node node)
           
 

Constructors in org.objectweb.proactive.core.body.proxy that throw ProActiveException
UniversalBodyProxy(ConstructorCall constructorCall, java.lang.Object[] parameters)
          Instantiates an object of class BodyProxy, creates a body object (referenced either via the instance variable localBody or remoteBody) and passes the ConstructorCall object c to the body, which will then handle the creation of the reified object (That's it !).
 

Uses of ProActiveException in org.objectweb.proactive.core.body.request
 

Subclasses of ProActiveException in org.objectweb.proactive.core.body.request
 class ServeException
           
 

Uses of ProActiveException in org.objectweb.proactive.core.body.rmi
 

Constructors in org.objectweb.proactive.core.body.rmi that throw ProActiveException
SshRmiBodyAdapter(UniversalBody body)
           
RmiBodyAdapter(RmiRemoteBody remoteBody)
           
RmiBodyAdapter(UniversalBody body)
           
 

Uses of ProActiveException in org.objectweb.proactive.core.component.adl
 

Methods in org.objectweb.proactive.core.component.adl that throw ProActiveException
static void Launcher.killNodes(boolean softly)
           
 

Uses of ProActiveException in org.objectweb.proactive.core.component.config
 

Methods in org.objectweb.proactive.core.component.config that throw ProActiveException
static ComponentConfigurationHandler ComponentConfigurationHandler.createComponentConfigurationHandler(java.lang.String componentsConfigurationLocation)
           
 

Uses of ProActiveException in org.objectweb.proactive.core.descriptor
 

Methods in org.objectweb.proactive.core.descriptor that throw ProActiveException
 void Launcher.activate()
          activate all main nodes and launch the main classes
 

Constructors in org.objectweb.proactive.core.descriptor that throw ProActiveException
Launcher(java.lang.String fileDescriptorPath)
          Conctructor for a launcher parse a xml pad url
 

Uses of ProActiveException in org.objectweb.proactive.core.descriptor.data
 

Methods in org.objectweb.proactive.core.descriptor.data that throw ProActiveException
 java.lang.Object VirtualNodeLookup.getUniqueAO()
           
 void VirtualNodeLookup.setRuntimeInformations(java.lang.String information, java.lang.String value)
           
 java.lang.Object VirtualNodeImpl.getUniqueAO()
           
 void VirtualNodeImpl.setRuntimeInformations(java.lang.String information, java.lang.String value)
           
 void VirtualNodeImpl.setService(UniversalService service)
           
protected  void RuntimeDeploymentProperties.checkProperty(java.lang.String property)
           
 ExternalProcess ProActiveDescriptorImpl.createProcess(java.lang.String processID, java.lang.String processClassName)
           
 ExternalProcess ProActiveDescriptorImpl.createProcess(java.lang.String processClassName)
           
 void ProActiveDescriptorImpl.mapToExtendedJVM(JVMProcess jvmProcess, java.lang.String processID)
           
 void ProActiveDescriptorImpl.killall(boolean softly)
           
 ExternalProcess ProActiveDescriptor.createProcess(java.lang.String processID, java.lang.String processClassName)
          Creates an ExternalProcess of the given className with the specified ProcessID
 ExternalProcess ProActiveDescriptor.createProcess(java.lang.String processClassName)
          Returns a new instance of ExternalProcess from processClassName
 void ProActiveDescriptor.mapToExtendedJVM(JVMProcess jvmProcess, java.lang.String processID)
          Maps the given jvmProcess with the extended JVMProcess defined with processID.
 void ProActiveDescriptor.killall(boolean softly)
          Kills all Nodes and JVMs(local or remote) created when activating the descriptor
 java.lang.Object VirtualNode.getUniqueAO()
          Returns the unique active object created on the unique node mapped to this VirtualNode.
 void VirtualNode.setRuntimeInformations(java.lang.String information, java.lang.String value)
          Allows to set runtime informations for this VirtualNode activation.
 

Uses of ProActiveException in org.objectweb.proactive.core.descriptor.services
 

Methods in org.objectweb.proactive.core.descriptor.services that throw ProActiveException
 void ServiceThread.notifyVirtualNode(ProActiveRuntime[] part)
           
 ProActiveRuntime[] RMIRegistryLookupService.startService()
           
 ProActiveRuntime[] P2PDescriptorService.startService()
           
 ProActiveRuntime[] FaultToleranceService.startService()
           
 ProActiveRuntime[] UniversalService.startService()
          Starts this Service
 void ServiceUser.setService(UniversalService service)
          Sets the given service
 

Uses of ProActiveException in org.objectweb.proactive.core.event
 

Constructors in org.objectweb.proactive.core.event that throw ProActiveException
AbstractNodeCreationEventListener(VirtualNode vn)
           
 

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

Subclasses of ProActiveException in org.objectweb.proactive.core.node
 class NodeException
           The Node interface offers a generic interface over various implementations of the node such as RMI or JINI, this exception offer a way to wrap the various exceptions triggered by the implementation.
 

Uses of ProActiveException in org.objectweb.proactive.core.runtime
 

Methods in org.objectweb.proactive.core.runtime that throw ProActiveException
static ProActiveRuntime RuntimeFactory.getDefaultRuntime()
          Returns the reference of the only one instance of the default ProActiveRuntime associated with the local JVM.
static ProActiveRuntime RuntimeFactory.getProtocolSpecificRuntime(java.lang.String protocol)
          Returns the reference of the only one instance of the ProActiveRuntime created with the given protocol, associated with the local JVM.
static ProActiveRuntime RuntimeFactory.getRuntime(java.lang.String proActiveRuntimeURL, java.lang.String protocol)
          Returns a reference to the ProActiveRuntime created with the given protocol and located at the given url.This url can be either local or remote
protected  ProActiveRuntimeAdapterImpl RuntimeFactory.createRuntimeAdapter(RemoteProActiveRuntime remoteProActiveRuntime)
          Creates an Adapter for the given RemoteProActiveRuntime
protected abstract  ProActiveRuntime RuntimeFactory.getProtocolSpecificRuntimeImpl()
          Returns the reference of the only one instance of the ProActiveRuntime associated with the local JVM.
protected abstract  ProActiveRuntime RuntimeFactory.getRemoteRuntimeImpl(java.lang.String s)
          Returns the reference to the proActiveRuntime located at s
protected abstract  ProActiveRuntimeAdapterImpl RuntimeFactory.createRuntimeAdapter()
          Creates a new Adapter
 UniversalBody ProActiveRuntimeForwarderImpl.createBody(UniqueRuntimeID urid, java.lang.String nodeName, ConstructorCall bodyConstructorCall, boolean isNodeLocal)
           
 void ProActiveRuntimeForwarderImpl.killAllNodes(UniqueRuntimeID urid)
           
 void ProActiveRuntimeForwarderImpl.killNode(UniqueRuntimeID urid, java.lang.String nodeName)
           
 void ProActiveRuntimeForwarderImpl.createVM(UniqueRuntimeID urid, UniversalProcess remoteProcess)
           
 java.lang.String[] ProActiveRuntimeForwarderImpl.getLocalNodeNames(UniqueRuntimeID urid)
           
 void ProActiveRuntimeForwarderImpl.register(UniqueRuntimeID urid, ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeUrl, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String rurid)
           
 void ProActiveRuntimeForwarderImpl.unregister(UniqueRuntimeID urid, ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeUrl, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String rurid)
           
 ProActiveRuntime[] ProActiveRuntimeForwarderImpl.getProActiveRuntimes(UniqueRuntimeID urid)
           
 ProActiveRuntime ProActiveRuntimeForwarderImpl.getProActiveRuntime(UniqueRuntimeID urid, java.lang.String proActiveRuntimeName)
           
 void ProActiveRuntimeForwarderImpl.addAcquaintance(UniqueRuntimeID urid, java.lang.String proActiveRuntimeName)
           
 java.lang.String[] ProActiveRuntimeForwarderImpl.getAcquaintances(UniqueRuntimeID urid)
           
 void ProActiveRuntimeForwarderImpl.rmAcquaintance(UniqueRuntimeID urid, java.lang.String proActiveRuntimeName)
           
 java.util.ArrayList ProActiveRuntimeForwarderImpl.getActiveObjects(UniqueRuntimeID urid, java.lang.String nodeName)
           
 java.util.ArrayList ProActiveRuntimeForwarderImpl.getActiveObjects(UniqueRuntimeID urid, java.lang.String nodeName, java.lang.String className)
           
 VirtualNode ProActiveRuntimeForwarderImpl.getVirtualNode(UniqueRuntimeID urid, java.lang.String virtualNodeName)
           
 void ProActiveRuntimeForwarderImpl.registerVirtualNode(UniqueRuntimeID urid, java.lang.String virtualNodeName, boolean replacePreviousBinding)
           
 void ProActiveRuntimeForwarderImpl.unregisterVirtualNode(UniqueRuntimeID urid, java.lang.String virtualNodeName)
           
 void ProActiveRuntimeForwarderImpl.unregisterAllVirtualNodes(UniqueRuntimeID urid)
           
 java.lang.String ProActiveRuntimeForwarderImpl.getJobID(UniqueRuntimeID urid, java.lang.String nodeUrl)
           
 UniversalBody ProActiveRuntimeForwarderImpl.receiveBody(UniqueRuntimeID urid, java.lang.String nodeName, Body body)
           
 UniversalBody ProActiveRuntimeForwarderImpl.receiveCheckpoint(UniqueRuntimeID urid, java.lang.String nodeURL, Checkpoint ckpt, int inc)
           
 ExternalProcess ProActiveRuntimeForwarderImpl.getProcessToDeploy(UniqueRuntimeID urid, ProActiveRuntime proActiveRuntimeDist, java.lang.String creatorID, java.lang.String vmName, java.lang.String padURL)
           
 java.lang.String ProActiveRuntimeForwarderImpl.getVNName(UniqueRuntimeID urid, java.lang.String Nodename)
           
 byte[] ProActiveRuntimeForwarderImpl.getClassDataFromThisRuntime(UniqueRuntimeID urid, java.lang.String className)
           
 byte[] ProActiveRuntimeForwarderImpl.getClassDataFromParentRuntime(UniqueRuntimeID urid, java.lang.String className)
           
 ProActiveDescriptor ProActiveRuntimeForwarderImpl.getDescriptor(UniqueRuntimeID urid, java.lang.String url, boolean isHierarchicalSearch)
           
 void ProActiveRuntimeForwarderImpl.launchMain(UniqueRuntimeID urid, java.lang.String className, java.lang.String[] parameters)
           
 void ProActiveRuntimeForwarderImpl.newRemote(UniqueRuntimeID urid, java.lang.String className)
           
 void ProActiveRuntimeForwarder.killAllNodes(UniqueRuntimeID urid)
           
 void ProActiveRuntimeForwarder.killNode(UniqueRuntimeID urid, java.lang.String nodeName)
           
 void ProActiveRuntimeForwarder.createVM(UniqueRuntimeID urid, UniversalProcess remoteProcess)
           
 java.lang.String[] ProActiveRuntimeForwarder.getLocalNodeNames(UniqueRuntimeID urid)
           
 void ProActiveRuntimeForwarder.register(UniqueRuntimeID urid, ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeUrl, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String vmName)
           
 void ProActiveRuntimeForwarder.unregister(UniqueRuntimeID urid, ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeUrl, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String vmName)
           
 ProActiveRuntime[] ProActiveRuntimeForwarder.getProActiveRuntimes(UniqueRuntimeID urid)
           
 ProActiveRuntime ProActiveRuntimeForwarder.getProActiveRuntime(UniqueRuntimeID urid, java.lang.String proActiveRuntimeName)
           
 void ProActiveRuntimeForwarder.addAcquaintance(UniqueRuntimeID urid, java.lang.String proActiveRuntimeName)
           
 java.lang.String[] ProActiveRuntimeForwarder.getAcquaintances(UniqueRuntimeID urid)
           
 void ProActiveRuntimeForwarder.rmAcquaintance(UniqueRuntimeID urid, java.lang.String proActiveRuntimeName)
           
 java.util.ArrayList ProActiveRuntimeForwarder.getActiveObjects(UniqueRuntimeID urid, java.lang.String nodeName)
           
 java.util.ArrayList ProActiveRuntimeForwarder.getActiveObjects(UniqueRuntimeID urid, java.lang.String nodeName, java.lang.String className)
           
 VirtualNode ProActiveRuntimeForwarder.getVirtualNode(UniqueRuntimeID urid, java.lang.String virtualNodeName)
           
 void ProActiveRuntimeForwarder.registerVirtualNode(UniqueRuntimeID urid, java.lang.String virtualNodeName, boolean replacePreviousBinding)
           
 void ProActiveRuntimeForwarder.unregisterVirtualNode(UniqueRuntimeID urid, java.lang.String virtualNodeName)
           
 void ProActiveRuntimeForwarder.unregisterAllVirtualNodes(UniqueRuntimeID urid)
           
 java.lang.String ProActiveRuntimeForwarder.getJobID(UniqueRuntimeID urid, java.lang.String nodeUrl)
           
 UniversalBody ProActiveRuntimeForwarder.createBody(UniqueRuntimeID urid, java.lang.String nodeName, ConstructorCall bodyConstructorCall, boolean isNodeLocal)
           
 UniversalBody ProActiveRuntimeForwarder.receiveBody(UniqueRuntimeID urid, java.lang.String nodeName, Body body)
           
 UniversalBody ProActiveRuntimeForwarder.receiveCheckpoint(UniqueRuntimeID urid, java.lang.String nodeName, Checkpoint ckpt, int inc)
           
 ExternalProcess ProActiveRuntimeForwarder.getProcessToDeploy(UniqueRuntimeID urid, ProActiveRuntime proActiveRuntimeDist, java.lang.String creatorID, java.lang.String vmName, java.lang.String padURL)
           
 byte[] ProActiveRuntimeForwarder.getClassDataFromThisRuntime(UniqueRuntimeID urid, java.lang.String className)
           
 byte[] ProActiveRuntimeForwarder.getClassDataFromParentRuntime(UniqueRuntimeID urid, java.lang.String className)
           
 void ProActiveRuntimeForwarder.launchMain(UniqueRuntimeID urid, java.lang.String className, java.lang.String[] parameters)
           
 void ProActiveRuntimeForwarder.newRemote(UniqueRuntimeID urid, java.lang.String className)
           
 java.lang.String ProActiveRuntimeForwarder.getVNName(UniqueRuntimeID urid, java.lang.String Nodename)
           
 ProActiveDescriptor ProActiveRuntimeForwarder.getDescriptor(UniqueRuntimeID urid, java.lang.String url, boolean isHierarchicalSearch)
           
 void ProActiveRuntimeAdapterImpl.killAllNodes()
           
 void ProActiveRuntimeAdapterImpl.killNode(java.lang.String nodeName)
           
 void ProActiveRuntimeAdapterImpl.createVM(UniversalProcess remoteProcess)
           
 java.lang.String[] ProActiveRuntimeAdapterImpl.getLocalNodeNames()
           
 void ProActiveRuntimeAdapterImpl.register(ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeUrl, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String vmName)
           
 void ProActiveRuntimeAdapterImpl.unregister(ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeUrl, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String vmName)
           
 ProActiveRuntime[] ProActiveRuntimeAdapterImpl.getProActiveRuntimes()
           
 ProActiveRuntime ProActiveRuntimeAdapterImpl.getProActiveRuntime(java.lang.String proActiveRuntimeName)
           
 void ProActiveRuntimeAdapterImpl.addAcquaintance(java.lang.String proActiveRuntimeName)
           
 java.lang.String[] ProActiveRuntimeAdapterImpl.getAcquaintances()
           
 void ProActiveRuntimeAdapterImpl.rmAcquaintance(java.lang.String proActiveRuntimeName)
           
 java.util.ArrayList ProActiveRuntimeAdapterImpl.getActiveObjects(java.lang.String nodeName)
           
 java.util.ArrayList ProActiveRuntimeAdapterImpl.getActiveObjects(java.lang.String nodeName, java.lang.String className)
           
 VirtualNode ProActiveRuntimeAdapterImpl.getVirtualNode(java.lang.String virtualNodeName)
           
 void ProActiveRuntimeAdapterImpl.registerVirtualNode(java.lang.String virtualNodeName, boolean replacePreviousBinding)
           
 void ProActiveRuntimeAdapterImpl.unregisterVirtualNode(java.lang.String virtualNodeName)
           
 void ProActiveRuntimeAdapterImpl.unregisterAllVirtualNodes()
           
 java.lang.String ProActiveRuntimeAdapterImpl.getJobID(java.lang.String nodeUrl)
           
 UniversalBody ProActiveRuntimeAdapterImpl.createBody(java.lang.String nodeName, ConstructorCall bodyConstructorCall, boolean isNodeLocal)
           
 UniversalBody ProActiveRuntimeAdapterImpl.receiveBody(java.lang.String nodeName, Body body)
           
 UniversalBody ProActiveRuntimeAdapterImpl.receiveCheckpoint(java.lang.String nodeName, Checkpoint ckpt, int inc)
           
 java.lang.String ProActiveRuntimeAdapterImpl.getVNName(java.lang.String Nodename)
           
 byte[] ProActiveRuntimeAdapterImpl.getClassDataFromThisRuntime(java.lang.String className)
           
 byte[] ProActiveRuntimeAdapterImpl.getClassDataFromParentRuntime(java.lang.String className)
           
 ExternalProcess ProActiveRuntimeAdapterImpl.getProcessToDeploy(ProActiveRuntime proActiveRuntimeDist, java.lang.String creatorID, java.lang.String vmName, java.lang.String padURL)
           
 void ProActiveRuntimeAdapterImpl.launchMain(java.lang.String className, java.lang.String[] parameters)
           
 void ProActiveRuntimeAdapterImpl.newRemote(java.lang.String className)
           
 ProActiveDescriptor ProActiveRuntimeAdapterImpl.getDescriptor(java.lang.String url, boolean isHierarchicalSearch)
           
 void RemoteProActiveRuntime.killAllNodes()
           
 void RemoteProActiveRuntime.killNode(java.lang.String nodeName)
           
 void RemoteProActiveRuntime.createVM(UniversalProcess remoteProcess)
           
 java.lang.String[] RemoteProActiveRuntime.getLocalNodeNames()
           
 void RemoteProActiveRuntime.register(ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeName, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String vmName)
           
 void RemoteProActiveRuntime.unregister(ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeName, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String vmName)
           
 ProActiveRuntime[] RemoteProActiveRuntime.getProActiveRuntimes()
           
 ProActiveRuntime RemoteProActiveRuntime.getProActiveRuntime(java.lang.String proActiveRuntimeName)
           
 void RemoteProActiveRuntime.addAcquaintance(java.lang.String proActiveRuntimeName)
           
 java.lang.String[] RemoteProActiveRuntime.getAcquaintances()
           
 void RemoteProActiveRuntime.rmAcquaintance(java.lang.String proActiveRuntimeName)
           
 java.lang.String RemoteProActiveRuntime.getURL()
           
 java.util.ArrayList RemoteProActiveRuntime.getActiveObjects(java.lang.String nodeName)
           
 java.util.ArrayList RemoteProActiveRuntime.getActiveObjects(java.lang.String nodeName, java.lang.String objectName)
           
 VirtualNode RemoteProActiveRuntime.getVirtualNode(java.lang.String virtualNodeName)
           
 void RemoteProActiveRuntime.registerVirtualNode(java.lang.String virtualNodeName, boolean replacePreviousBinding)
           
 void RemoteProActiveRuntime.unregisterVirtualNode(java.lang.String virtualNodeName)
           
 void RemoteProActiveRuntime.unregisterAllVirtualNodes()
           
 java.lang.String RemoteProActiveRuntime.getJobID(java.lang.String nodeUrl)
           
 UniversalBody RemoteProActiveRuntime.createBody(java.lang.String nodeName, ConstructorCall bodyConstructorCall, boolean isNodeLocal)
           
 UniversalBody RemoteProActiveRuntime.receiveBody(java.lang.String nodeName, Body body)
           
 UniversalBody RemoteProActiveRuntime.receiveCheckpoint(java.lang.String nodeName, Checkpoint ckpt, int inc)
           
 ExternalProcess RemoteProActiveRuntime.getProcessToDeploy(ProActiveRuntime proActiveRuntimeDist, java.lang.String creatorID, java.lang.String vmName, java.lang.String padURL)
           
 byte[] RemoteProActiveRuntime.getClassDataFromParentRuntime(java.lang.String className)
           
 byte[] RemoteProActiveRuntime.getClassDataFromThisRuntime(java.lang.String className)
           
 java.lang.String RemoteProActiveRuntime.getVNName(java.lang.String Nodename)
           
 void RemoteProActiveRuntime.launchMain(java.lang.String className, java.lang.String[] parameters)
           
 void RemoteProActiveRuntime.newRemote(java.lang.String className)
           
 ProActiveDescriptor RemoteProActiveRuntime.getDescriptor(java.lang.String url, boolean isHierarchicalSearch)
           
 void RemoteProActiveRuntimeForwarder.killAllNodes(UniqueRuntimeID ruid)
           
 void RemoteProActiveRuntimeForwarder.killNode(UniqueRuntimeID ruid, java.lang.String nodeName)
           
 void RemoteProActiveRuntimeForwarder.createVM(UniqueRuntimeID ruid, UniversalProcess remoteProcess)
           
 java.lang.String[] RemoteProActiveRuntimeForwarder.getLocalNodeNames(UniqueRuntimeID ruid)
           
 void RemoteProActiveRuntimeForwarder.register(UniqueRuntimeID ruid, ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeName, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String vmName)
           
 void RemoteProActiveRuntimeForwarder.unregister(UniqueRuntimeID ruid, ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeName, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String vmName)
           
 ProActiveRuntime[] RemoteProActiveRuntimeForwarder.getProActiveRuntimes(UniqueRuntimeID ruid)
           
 ProActiveRuntime RemoteProActiveRuntimeForwarder.getProActiveRuntime(UniqueRuntimeID ruid, java.lang.String proActiveRuntimeName)
           
 void RemoteProActiveRuntimeForwarder.addAcquaintance(UniqueRuntimeID ruid, java.lang.String proActiveRuntimeName)
           
 java.lang.String[] RemoteProActiveRuntimeForwarder.getAcquaintances(UniqueRuntimeID ruid)
           
 void RemoteProActiveRuntimeForwarder.rmAcquaintance(UniqueRuntimeID ruid, java.lang.String proActiveRuntimeName)
           
 java.lang.String RemoteProActiveRuntimeForwarder.getURL(UniqueRuntimeID ruid)
           
 java.util.ArrayList RemoteProActiveRuntimeForwarder.getActiveObjects(UniqueRuntimeID ruid, java.lang.String nodeName)
           
 java.util.ArrayList RemoteProActiveRuntimeForwarder.getActiveObjects(UniqueRuntimeID ruid, java.lang.String nodeName, java.lang.String objectName)
           
 VirtualNode RemoteProActiveRuntimeForwarder.getVirtualNode(UniqueRuntimeID ruid, java.lang.String virtualNodeName)
           
 void RemoteProActiveRuntimeForwarder.registerVirtualNode(UniqueRuntimeID ruid, java.lang.String virtualNodeName, boolean replacePreviousBinding)
           
 void RemoteProActiveRuntimeForwarder.unregisterVirtualNode(UniqueRuntimeID ruid, java.lang.String virtualNodeName)
           
 void RemoteProActiveRuntimeForwarder.unregisterAllVirtualNodes(UniqueRuntimeID ruid)
           
 java.lang.String RemoteProActiveRuntimeForwarder.getJobID(UniqueRuntimeID ruid, java.lang.String nodeUrl)
           
 UniversalBody RemoteProActiveRuntimeForwarder.createBody(UniqueRuntimeID ruid, java.lang.String nodeName, ConstructorCall bodyConstructorCall, boolean isNodeLocal)
           
 UniversalBody RemoteProActiveRuntimeForwarder.receiveBody(UniqueRuntimeID ruid, java.lang.String nodeName, Body body)
           
 UniversalBody RemoteProActiveRuntimeForwarder.receiveCheckpoint(UniqueRuntimeID ruid, java.lang.String nodeName, Checkpoint ckpt, int inc)
           
 ExternalProcess RemoteProActiveRuntimeForwarder.getProcessToDeploy(UniqueRuntimeID urid, ProActiveRuntime proActiveRuntimeDist, java.lang.String creatorID, java.lang.String vmName, java.lang.String padURL)
           
 byte[] RemoteProActiveRuntimeForwarder.getClassDataFromParentRuntime(UniqueRuntimeID ruid, java.lang.String className)
           
 byte[] RemoteProActiveRuntimeForwarder.getClassDataFromThisRuntime(UniqueRuntimeID ruid, java.lang.String className)
           
 ProActiveDescriptor RemoteProActiveRuntimeForwarder.getDescriptor(UniqueRuntimeID ruid, java.lang.String url, boolean isHierarchicalSearch)
           
 java.lang.String RemoteProActiveRuntimeForwarder.getVNName(UniqueRuntimeID ruid, java.lang.String Nodename)
           
 void RemoteProActiveRuntimeForwarder.launchMain(UniqueRuntimeID ruid, java.lang.String className, java.lang.String[] parameters)
           
 void RemoteProActiveRuntimeForwarder.newRemote(UniqueRuntimeID ruid, java.lang.String className)
           
 void ProActiveRuntimeAdapterForwarderImpl.killAllNodes()
           
 void ProActiveRuntimeAdapterForwarderImpl.killNode(java.lang.String nodeName)
           
 void ProActiveRuntimeAdapterForwarderImpl.createVM(UniversalProcess remoteProcess)
           
 java.lang.String[] ProActiveRuntimeAdapterForwarderImpl.getLocalNodeNames()
           
 void ProActiveRuntimeAdapterForwarderImpl.register(ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeUrl, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String vmName)
           
 void ProActiveRuntimeAdapterForwarderImpl.unregister(ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeUrl, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String vmName)
           
 ProActiveRuntime[] ProActiveRuntimeAdapterForwarderImpl.getProActiveRuntimes()
           
 ProActiveRuntime ProActiveRuntimeAdapterForwarderImpl.getProActiveRuntime(java.lang.String proActiveRuntimeName)
           
 void ProActiveRuntimeAdapterForwarderImpl.addAcquaintance(java.lang.String proActiveRuntimeName)
           
 java.lang.String[] ProActiveRuntimeAdapterForwarderImpl.getAcquaintances()
           
 void ProActiveRuntimeAdapterForwarderImpl.rmAcquaintance(java.lang.String proActiveRuntimeName)
           
 java.util.ArrayList ProActiveRuntimeAdapterForwarderImpl.getActiveObjects(java.lang.String nodeName)
           
 java.util.ArrayList ProActiveRuntimeAdapterForwarderImpl.getActiveObjects(java.lang.String nodeName, java.lang.String className)
           
 VirtualNode ProActiveRuntimeAdapterForwarderImpl.getVirtualNode(java.lang.String virtualNodeName)
           
 void ProActiveRuntimeAdapterForwarderImpl.registerVirtualNode(java.lang.String virtualNodeName, boolean replacePreviousBinding)
           
 void ProActiveRuntimeAdapterForwarderImpl.unregisterVirtualNode(java.lang.String virtualNodeName)
           
 void ProActiveRuntimeAdapterForwarderImpl.unregisterAllVirtualNodes()
           
 java.lang.String ProActiveRuntimeAdapterForwarderImpl.getJobID(java.lang.String nodeUrl)
           
 UniversalBody ProActiveRuntimeAdapterForwarderImpl.createBody(java.lang.String nodeName, ConstructorCall bodyConstructorCall, boolean isNodeLocal)
           
 UniversalBody ProActiveRuntimeAdapterForwarderImpl.receiveBody(java.lang.String nodeName, Body body)
           
 UniversalBody ProActiveRuntimeAdapterForwarderImpl.receiveCheckpoint(java.lang.String nodeName, Checkpoint ckpt, int inc)
           
 java.lang.String ProActiveRuntimeAdapterForwarderImpl.getVNName(java.lang.String Nodename)
           
 byte[] ProActiveRuntimeAdapterForwarderImpl.getClassDataFromThisRuntime(java.lang.String className)
           
 byte[] ProActiveRuntimeAdapterForwarderImpl.getClassDataFromParentRuntime(java.lang.String className)
           
 ExternalProcess ProActiveRuntimeAdapterForwarderImpl.getProcessToDeploy(ProActiveRuntime proActiveRuntimeDist, java.lang.String creatorID, java.lang.String vmName, java.lang.String padURL)
           
 ProActiveDescriptor ProActiveRuntimeAdapterForwarderImpl.getDescriptor(java.lang.String url, boolean isHierarchicalSearch)
           
 void ProActiveRuntimeAdapterForwarderImpl.launchMain(java.lang.String className, java.lang.String[] parameters)
           
 void ProActiveRuntimeAdapterForwarderImpl.newRemote(java.lang.String className)
           
 ProActiveDescriptor ProActiveRuntimeImpl.getDescriptor(java.lang.String url, boolean isHierarchicalSearch)
           
 byte[] ProActiveRuntimeImpl.getClassDataFromParentRuntime(java.lang.String className)
           
 byte[] ProActiveRuntimeImpl.getClassDataFromThisRuntime(java.lang.String className)
           
 void ProActiveRuntimeImpl.launchMain(java.lang.String className, java.lang.String[] parameters)
           
 void ProActiveRuntimeImpl.newRemote(java.lang.String className)
           
 ExternalProcess ProActiveRuntimeImpl.getProcessToDeploy(ProActiveRuntime proActiveRuntimeDist, java.lang.String creatorID, java.lang.String vmName, java.lang.String padURL)
           
 java.lang.String ProActiveRuntimeImpl.getVNName(java.lang.String nodename)
           
 void ProActiveRuntime.killAllNodes()
          Kills all Nodes in this ProActiveRuntime
 void ProActiveRuntime.killNode(java.lang.String nodeName)
          Kills the Node of the given name and all Active Objects deployed on it.
 void ProActiveRuntime.createVM(UniversalProcess remoteProcess)
          Creates a new ProActiveRuntime associated with a new VM on the host defined in the given process.
 java.lang.String[] ProActiveRuntime.getLocalNodeNames()
          Returns the name of all nodes known by this ProActiveRuntime on this VM
 void ProActiveRuntime.register(ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeUrl, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String vmName)
          **For internal use only** Allows this ProActiveRuntime on this VM to register another ProActiveRuntime
 void ProActiveRuntime.unregister(ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeUrl, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String vmName)
          **For internal use only** Allows this ProactiveRuntime on this VM to unregister an already resigesterd ProActiveRuntime.
 ProActiveRuntime[] ProActiveRuntime.getProActiveRuntimes()
          Returns all the ProActiveRuntime registered on this ProActiveRuntime on this VM
 ProActiveRuntime ProActiveRuntime.getProActiveRuntime(java.lang.String proActiveRuntimeName)
          Returns the ProActiveRuntime of specified name
 void ProActiveRuntime.addAcquaintance(java.lang.String proActiveRuntimeName)
          **For internal use only** Tells this runtime that it's registered in another one
 java.lang.String[] ProActiveRuntime.getAcquaintances()
          Returns all the ProActiveRuntime URL in which this runtime is registered
 void ProActiveRuntime.rmAcquaintance(java.lang.String proActiveRuntimeName)
          **For internal use only** .
 java.util.ArrayList ProActiveRuntime.getActiveObjects(java.lang.String nodeName)
          Returns all Active Objects deployed on the node with the given name on this ProActiveRuntime
 java.util.ArrayList ProActiveRuntime.getActiveObjects(java.lang.String nodeName, java.lang.String className)
          Returns all Active Objects with the specified class name, deployed on the node with the given name on this ProActiveRuntime
 VirtualNode ProActiveRuntime.getVirtualNode(java.lang.String virtualNodeName)
          Returns the VirtualNode with the given name
 void ProActiveRuntime.registerVirtualNode(java.lang.String virtualNodeName, boolean replacePreviousBinding)
          Registers the virtualNode of the given name in a registry such RMIRegistry or Jini Service Lookup
 void ProActiveRuntime.unregisterVirtualNode(java.lang.String virtualNodeName)
          Unregisters the VirtualNode of the given name from the local runtime.
 void ProActiveRuntime.unregisterAllVirtualNodes()
          Unregisters all VirtualNodes from the local runtime
 java.lang.String ProActiveRuntime.getJobID(java.lang.String nodeUrl)
           
 UniversalBody ProActiveRuntime.createBody(java.lang.String nodeName, ConstructorCall bodyConstructorCall, boolean isNodeLocal)
           This method is the basis for creating remote active objects.
 UniversalBody ProActiveRuntime.receiveBody(java.lang.String nodeName, Body body)
           This method is the basis for migrating active objects.
 UniversalBody ProActiveRuntime.receiveCheckpoint(java.lang.String nodeName, Checkpoint ckpt, int inc)
          The runtime recovers the body contained in the checkpoint ckpt.
 ExternalProcess ProActiveRuntime.getProcessToDeploy(ProActiveRuntime proActiveRuntimeDist, java.lang.String creatorID, java.lang.String vmName, java.lang.String padURL)
          Ask proActiveRuntimeDist for the process with given ids: padURL, creatorID, vmName.
 java.lang.String ProActiveRuntime.getVNName(java.lang.String Nodename)
           
 byte[] ProActiveRuntime.getClassDataFromThisRuntime(java.lang.String className)
          Looks for class bytecode in the current runtime.
 byte[] ProActiveRuntime.getClassDataFromParentRuntime(java.lang.String className)
          Looks for class bytecode in the ancestors of the current runtime : first it tries in the father runtime, then in the grand-father etc...
 void ProActiveRuntime.launchMain(java.lang.String className, java.lang.String[] parameters)
          launch the main method of the main class with parameters
 void ProActiveRuntime.newRemote(java.lang.String className)
          construct a new instance remotly
 ProActiveDescriptor ProActiveRuntime.getDescriptor(java.lang.String url, boolean isHierarchicalSearch)
          return the pad matching with the given url or parse it from the file system
 

Constructors in org.objectweb.proactive.core.runtime that throw ProActiveException
ProActiveRuntimeAdapterImpl(RemoteProActiveRuntime proActiveRuntime)
           
ProActiveRuntimeAdapterForwarderImpl(RemoteProActiveRuntimeForwarder proActiveRuntime)
           
ProActiveRuntimeAdapterForwarderImpl(ProActiveRuntimeAdapterForwarderImpl localAdapter, ProActiveRuntime remoteAdapter)
           
 

Uses of ProActiveException in org.objectweb.proactive.core.runtime.http
 

Methods in org.objectweb.proactive.core.runtime.http that throw ProActiveException
protected  ProActiveRuntime HttpRuntimeFactory.getProtocolSpecificRuntimeImpl()
           
protected  ProActiveRuntime HttpRuntimeFactory.getRemoteRuntimeImpl(java.lang.String s)
           
protected  ProActiveRuntimeAdapterImpl HttpRuntimeFactory.createRuntimeAdapter()
           
 ExternalProcess HttpProActiveRuntime.getProcessToDeploy(ProActiveRuntime proActiveRuntimeDist, java.lang.String creatorID, java.lang.String vmName, java.lang.String padURL)
           
 void HttpProActiveRuntime.killAllNodes()
           
 void HttpProActiveRuntime.killNode(java.lang.String nodeName)
           
 void HttpProActiveRuntime.createVM(UniversalProcess remoteProcess)
           
 java.lang.String[] HttpProActiveRuntime.getLocalNodeNames()
           
 void HttpProActiveRuntime.register(ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeName, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String vmName)
           
 void HttpProActiveRuntime.unregister(ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeUrl, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String vmName)
           
 ProActiveRuntime[] HttpProActiveRuntime.getProActiveRuntimes()
           
 ProActiveRuntime HttpProActiveRuntime.getProActiveRuntime(java.lang.String proActiveRuntimeName)
           
 java.lang.String HttpProActiveRuntime.getURL()
           
 java.util.ArrayList HttpProActiveRuntime.getActiveObjects(java.lang.String nodeName)
           
 java.util.ArrayList HttpProActiveRuntime.getActiveObjects(java.lang.String nodeName, java.lang.String objectName)
           
 VirtualNode HttpProActiveRuntime.getVirtualNode(java.lang.String virtualNodeName)
           
 void HttpProActiveRuntime.registerVirtualNode(java.lang.String virtualNodeName, boolean replacePreviousBinding)
           
 void HttpProActiveRuntime.unregisterVirtualNode(java.lang.String virtualNodeName)
           
 void HttpProActiveRuntime.unregisterAllVirtualNodes()
           
 UniversalBody HttpProActiveRuntime.createBody(java.lang.String nodeName, ConstructorCall bodyConstructorCall, boolean isNodeLocal)
           
 UniversalBody HttpProActiveRuntime.receiveBody(java.lang.String nodeName, Body body)
           
 java.lang.String HttpProActiveRuntime.getJobID(java.lang.String nodeUrl)
           
 void HttpProActiveRuntime.addAcquaintance(java.lang.String proActiveRuntimeName)
           
 java.lang.String[] HttpProActiveRuntime.getAcquaintances()
           
 void HttpProActiveRuntime.rmAcquaintance(java.lang.String proActiveRuntimeName)
           
 byte[] HttpProActiveRuntime.getClassDataFromParentRuntime(java.lang.String className)
           
 byte[] HttpProActiveRuntime.getClassDataFromThisRuntime(java.lang.String className)
           
 UniversalBody HttpProActiveRuntime.receiveCheckpoint(java.lang.String nodeURL, Checkpoint ckpt, int inc)
           
 ProActiveDescriptor HttpProActiveRuntime.getDescriptor(java.lang.String url, boolean isHierarchicalSearch)
           
 void HttpProActiveRuntime.launchMain(java.lang.String className, java.lang.String[] parameters)
           
 void HttpProActiveRuntime.newRemote(java.lang.String className)
           
 java.lang.String HttpProActiveRuntime.getVNName(java.lang.String nodename)
           
 

Uses of ProActiveException in org.objectweb.proactive.core.runtime.ibis
 

Methods in org.objectweb.proactive.core.runtime.ibis that throw ProActiveException
protected  ProActiveRuntime IbisRuntimeFactory.getProtocolSpecificRuntimeImpl()
           
protected  ProActiveRuntime IbisRuntimeFactory.getRemoteRuntimeImpl(java.lang.String s)
           
protected  ProActiveRuntimeAdapterImpl IbisRuntimeFactory.createRuntimeAdapter()
           
 void IbisProActiveRuntimeImpl.killAllNodes()
           
 void IbisProActiveRuntimeImpl.killNode(java.lang.String nodeName)
           
 void IbisProActiveRuntimeImpl.createVM(UniversalProcess remoteProcess)
           
 java.lang.String[] IbisProActiveRuntimeImpl.getLocalNodeNames()
           
 void IbisProActiveRuntimeImpl.register(ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeName, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String vmName)
           
 void IbisProActiveRuntimeImpl.unregister(ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeName, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String vmName)
           
 ProActiveRuntime[] IbisProActiveRuntimeImpl.getProActiveRuntimes()
           
 ProActiveRuntime IbisProActiveRuntimeImpl.getProActiveRuntime(java.lang.String proActiveRuntimeName)
           
 void IbisProActiveRuntimeImpl.addAcquaintance(java.lang.String proActiveRuntimeName)
           
 java.lang.String[] IbisProActiveRuntimeImpl.getAcquaintances()
           
 void IbisProActiveRuntimeImpl.rmAcquaintance(java.lang.String proActiveRuntimeName)
           
 ExternalProcess IbisProActiveRuntimeImpl.getProcessToDeploy(ProActiveRuntime proActiveRuntimeDist, java.lang.String creatorID, java.lang.String vmName, java.lang.String padURL)
           
 java.util.ArrayList IbisProActiveRuntimeImpl.getActiveObjects(java.lang.String nodeName)
           
 java.util.ArrayList IbisProActiveRuntimeImpl.getActiveObjects(java.lang.String nodeName, java.lang.String objectName)
           
 VirtualNode IbisProActiveRuntimeImpl.getVirtualNode(java.lang.String virtualNodeName)
           
 void IbisProActiveRuntimeImpl.unregisterVirtualNode(java.lang.String virtualnodeName)
           
 void IbisProActiveRuntimeImpl.unregisterAllVirtualNodes()
           
 UniversalBody IbisProActiveRuntimeImpl.createBody(java.lang.String nodeName, ConstructorCall bodyConstructorCall, boolean isNodeLocal)
           
 UniversalBody IbisProActiveRuntimeImpl.receiveBody(java.lang.String nodeName, Body body)
           
 UniversalBody IbisProActiveRuntimeImpl.receiveCheckpoint(java.lang.String nodeURL, Checkpoint ckpt, int inc)
           
 java.lang.String IbisProActiveRuntimeImpl.getVNName(java.lang.String nodename)
           
 java.lang.String IbisProActiveRuntimeImpl.getJobID(java.lang.String nodeUrl)
           
 byte[] IbisProActiveRuntimeImpl.getClassDataFromParentRuntime(java.lang.String className)
           
 byte[] IbisProActiveRuntimeImpl.getClassDataFromThisRuntime(java.lang.String className)
           
 void IbisProActiveRuntimeImpl.launchMain(java.lang.String className, java.lang.String[] parameters)
           
 void IbisProActiveRuntimeImpl.newRemote(java.lang.String className)
           
 ProActiveDescriptor IbisProActiveRuntimeImpl.getDescriptor(java.lang.String url, boolean isHierarchicalSearch)
           
 

Uses of ProActiveException in org.objectweb.proactive.core.runtime.jini
 

Methods in org.objectweb.proactive.core.runtime.jini that throw ProActiveException
 ExternalProcess JiniRuntimeImpl.getProcessToDeploy(ProActiveRuntime proActiveRuntimeDist, java.lang.String creatorID, java.lang.String vmName, java.lang.String padURL)
           
 void JiniRuntimeImpl.killAllNodes()
           
 void JiniRuntimeImpl.killNode(java.lang.String nodeName)
           
 void JiniRuntimeImpl.unregisterVirtualNode(java.lang.String virtualNodeName)
           
 void JiniRuntimeImpl.unregisterAllVirtualNodes()
           
protected  ProActiveRuntime JiniRuntimeFactory.getProtocolSpecificRuntimeImpl()
           
protected  ProActiveRuntime JiniRuntimeFactory.getRemoteRuntimeImpl(java.lang.String s)
           
protected  ProActiveRuntimeAdapterImpl JiniRuntimeFactory.createRuntimeAdapter()
           
 

Uses of ProActiveException in org.objectweb.proactive.core.runtime.rmi
 

Methods in org.objectweb.proactive.core.runtime.rmi that throw ProActiveException
protected  ProActiveRuntime SshRmiRuntimeFactory.getRemoteRuntimeImpl(java.lang.String s)
           
protected  ProActiveRuntimeAdapterImpl SshRmiRuntimeFactory.createRuntimeAdapter()
           
protected  ProActiveRuntimeAdapterForwarderImpl SshRmiRuntimeFactory.createRuntimeAdapterForwarder()
           
protected  ProActiveRuntime RmiRuntimeFactory.getProtocolSpecificRuntimeImpl()
           
protected  ProActiveRuntime RmiRuntimeFactory.getRemoteRuntimeImpl(java.lang.String s)
           
protected  ProActiveRuntimeAdapterImpl RmiRuntimeFactory.createRuntimeAdapter()
           
protected  ProActiveRuntimeAdapterForwarderImpl RmiRuntimeFactory.createRuntimeAdapterForwarder()
           
 void RmiProActiveRuntimeForwarderImpl.addAcquaintance(UniqueRuntimeID urid, java.lang.String proActiveRuntimeName)
           
 UniversalBody RmiProActiveRuntimeForwarderImpl.createBody(UniqueRuntimeID urid, java.lang.String nodeName, ConstructorCall bodyConstructorCall, boolean isNodeLocal)
           
 void RmiProActiveRuntimeForwarderImpl.createVM(UniqueRuntimeID urid, UniversalProcess remoteProcess)
           
 java.lang.String[] RmiProActiveRuntimeForwarderImpl.getAcquaintances(UniqueRuntimeID urid)
           
 java.util.ArrayList RmiProActiveRuntimeForwarderImpl.getActiveObjects(UniqueRuntimeID urid, java.lang.String nodeName, java.lang.String objectName)
           
 java.util.ArrayList RmiProActiveRuntimeForwarderImpl.getActiveObjects(UniqueRuntimeID urid, java.lang.String nodeName)
           
 byte[] RmiProActiveRuntimeForwarderImpl.getClassDataFromParentRuntime(UniqueRuntimeID urid, java.lang.String className)
           
 byte[] RmiProActiveRuntimeForwarderImpl.getClassDataFromThisRuntime(UniqueRuntimeID urid, java.lang.String className)
           
 java.lang.String RmiProActiveRuntimeForwarderImpl.getJobID(UniqueRuntimeID urid, java.lang.String nodeUrl)
           
 java.lang.String[] RmiProActiveRuntimeForwarderImpl.getLocalNodeNames(UniqueRuntimeID urid)
           
 ProActiveRuntime RmiProActiveRuntimeForwarderImpl.getProActiveRuntime(UniqueRuntimeID urid, java.lang.String proActiveRuntimeName)
           
 ProActiveRuntime[] RmiProActiveRuntimeForwarderImpl.getProActiveRuntimes(UniqueRuntimeID urid)
           
 ExternalProcess RmiProActiveRuntimeForwarderImpl.getProcessToDeploy(UniqueRuntimeID urid, ProActiveRuntime proActiveRuntimeDist, java.lang.String creatorID, java.lang.String vmName, java.lang.String padURL)
           
 java.lang.String RmiProActiveRuntimeForwarderImpl.getURL(UniqueRuntimeID urid)
           
 VirtualNode RmiProActiveRuntimeForwarderImpl.getVirtualNode(UniqueRuntimeID urid, java.lang.String virtualNodeName)
           
 java.lang.String RmiProActiveRuntimeForwarderImpl.getVNName(UniqueRuntimeID urid, java.lang.String Nodename)
           
 void RmiProActiveRuntimeForwarderImpl.killAllNodes(UniqueRuntimeID urid)
           
 void RmiProActiveRuntimeForwarderImpl.killNode(UniqueRuntimeID urid, java.lang.String nodeName)
           
 UniversalBody RmiProActiveRuntimeForwarderImpl.receiveBody(UniqueRuntimeID urid, java.lang.String nodeName, Body body)
           
 UniversalBody RmiProActiveRuntimeForwarderImpl.receiveCheckpoint(UniqueRuntimeID urid, java.lang.String nodeName, Checkpoint ckpt, int inc)
           
 void RmiProActiveRuntimeForwarderImpl.register(UniqueRuntimeID urid, ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeName, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String vmName)
           
 void RmiProActiveRuntimeForwarderImpl.registerVirtualNode(UniqueRuntimeID urid, java.lang.String virtualNodeName, boolean replacePreviousBinding)
           
 void RmiProActiveRuntimeForwarderImpl.rmAcquaintance(UniqueRuntimeID urid, java.lang.String proActiveRuntimeName)
           
 void RmiProActiveRuntimeForwarderImpl.unregister(UniqueRuntimeID urid, ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeName, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String vmName)
           
 void RmiProActiveRuntimeForwarderImpl.unregisterAllVirtualNodes(UniqueRuntimeID urid)
           
 void RmiProActiveRuntimeForwarderImpl.unregisterVirtualNode(UniqueRuntimeID urid, java.lang.String virtualNodeName)
           
 ProActiveDescriptor RmiProActiveRuntimeForwarderImpl.getDescriptor(UniqueRuntimeID urid, java.lang.String url, boolean isHierarchicalSearch)
           
 void RmiProActiveRuntimeForwarderImpl.launchMain(UniqueRuntimeID urid, java.lang.String className, java.lang.String[] parameters)
           
 void RmiProActiveRuntimeForwarderImpl.newRemote(UniqueRuntimeID urid, java.lang.String className)
           
 ExternalProcess RmiProActiveRuntimeImpl.getProcessToDeploy(ProActiveRuntime proActiveRuntimeDist, java.lang.String creatorID, java.lang.String vmName, java.lang.String padURL)
           
 void RmiProActiveRuntimeImpl.killAllNodes()
           
 void RmiProActiveRuntimeImpl.killNode(java.lang.String nodeName)
           
 void RmiProActiveRuntimeImpl.createVM(UniversalProcess remoteProcess)
           
 java.lang.String[] RmiProActiveRuntimeImpl.getLocalNodeNames()
           
 void RmiProActiveRuntimeImpl.register(ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeName, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String vmName)
           
 void RmiProActiveRuntimeImpl.unregister(ProActiveRuntime proActiveRuntimeDist, java.lang.String proActiveRuntimeName, java.lang.String creatorID, java.lang.String creationProtocol, java.lang.String vmName)
           
 ProActiveRuntime[] RmiProActiveRuntimeImpl.getProActiveRuntimes()
           
 ProActiveRuntime RmiProActiveRuntimeImpl.getProActiveRuntime(java.lang.String proActiveRuntimeName)
           
 void RmiProActiveRuntimeImpl.addAcquaintance(java.lang.String proActiveRuntimeName)
           
 java.lang.String[] RmiProActiveRuntimeImpl.getAcquaintances()
           
 void RmiProActiveRuntimeImpl.rmAcquaintance(java.lang.String proActiveRuntimeName)
           
 java.util.ArrayList RmiProActiveRuntimeImpl.getActiveObjects(java.lang.String nodeName)
           
 java.util.ArrayList RmiProActiveRuntimeImpl.getActiveObjects(java.lang.String nodeName, java.lang.String objectName)
           
 VirtualNode RmiProActiveRuntimeImpl.getVirtualNode(java.lang.String virtualNodeName)
           
 void RmiProActiveRuntimeImpl.unregisterVirtualNode(java.lang.String virtualnodeName)
           
 void RmiProActiveRuntimeImpl.unregisterAllVirtualNodes()
           
 UniversalBody RmiProActiveRuntimeImpl.createBody(java.lang.String nodeName, ConstructorCall bodyConstructorCall, boolean isNodeLocal)
           
 UniversalBody RmiProActiveRuntimeImpl.receiveBody(java.lang.String nodeName, Body body)
           
 UniversalBody RmiProActiveRuntimeImpl.receiveCheckpoint(java.lang.String nodeURL, Checkpoint ckpt, int inc)
           
 java.lang.String RmiProActiveRuntimeImpl.getJobID(java.lang.String nodeUrl)
           
 byte[] RmiProActiveRuntimeImpl.getClassDataFromParentRuntime(java.lang.String className)
           
 byte[] RmiProActiveRuntimeImpl.getClassDataFromThisRuntime(java.lang.String className)
           
 void RmiProActiveRuntimeImpl.launchMain(java.lang.String className, java.lang.String[] parameters)
           
 void RmiProActiveRuntimeImpl.newRemote(java.lang.String className)
           
 ProActiveDescriptor RmiProActiveRuntimeImpl.getDescriptor(java.lang.String url, boolean isHierarchicalSearch)
           
 java.lang.String RmiProActiveRuntimeImpl.getVNName(java.lang.String nodename)
           
 

Uses of ProActiveException in org.objectweb.proactive.core.util
 

Methods in org.objectweb.proactive.core.util that throw ProActiveException
static byte[] ObjectToByteConverter.convert(java.lang.Object o)
           
 

Uses of ProActiveException in org.objectweb.proactive.ext.security.exceptions
 

Subclasses of ProActiveException in org.objectweb.proactive.ext.security.exceptions
 class SecurityMigrationException
           
 

Uses of ProActiveException in org.objectweb.proactive.p2p.service
 

Methods in org.objectweb.proactive.p2p.service that throw ProActiveException
 void StartP2PService.start()
          Start a new active ProActive P2P service.
 



Copyright 2001-2005 INRIA All Rights Reserved.