Uses of Interface
org.objectweb.proactive.core.process.UniversalProcess

Packages that use UniversalProcess
org.objectweb.proactive.core.process Defines services for spawning an external process from Java.  
org.objectweb.proactive.core.process.glite Defines services for creating a remote process using GLite.  
org.objectweb.proactive.core.process.globus Defines services for creating a remote process using Globus.  
org.objectweb.proactive.core.process.gridengine Defines services for creating a remote process using Sun Grid Engine for a cluster managed by SGE.  
org.objectweb.proactive.core.process.lsf Defines services for creating a remote process BSUB for a cluster using LSF protocol.  
org.objectweb.proactive.core.process.nordugrid Defines services for creating a remote process using ARC (NorduGrid).  
org.objectweb.proactive.core.process.oar Defines services for creating a remote process using OAR for a cluster managed by OAR .  
org.objectweb.proactive.core.process.pbs Defines services for creating a remote process using PBS for a cluster managed by PBS.  
org.objectweb.proactive.core.process.prun Defines services for creating a remote process using PRUN for a cluster managed by PBS.  
org.objectweb.proactive.core.process.rlogin Defines services for creating a remote process using Rlogin.  
org.objectweb.proactive.core.process.rsh Defines services for creating a remote process using RSH.  
org.objectweb.proactive.core.process.rsh.maprsh **For internal use only** Defines services for creating a remote process using maprsh.  
org.objectweb.proactive.core.process.ssh Defines services for creating a remote process using SSH.  
org.objectweb.proactive.core.process.unicore Defines services for creating a remote process using Unicore.  
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.rmi RMI implementation of ProActiveRuntime
 

Uses of UniversalProcess in org.objectweb.proactive.core.process
 

Subinterfaces of UniversalProcess in org.objectweb.proactive.core.process
 interface ExternalProcess
          A class implementing this interface is able to start a UniversalProcess and to connect its input/output to handlers or to close all streams.
 interface ExternalProcessDecorator
          A class implementing this interface is able to start an embedded ExternalProcess.
 interface JVMProcess
           The JVMProcess class is able to start localy any class of the ProActive library by creating a Java Virtual Machine.
 

Classes in org.objectweb.proactive.core.process that implement UniversalProcess
 class AbstractExternalProcess
           
 class AbstractExternalProcessDecorator
           
 class AbstractListProcessDecorator
          This class contains a list of ExternalProcessDecorator processes that share the same configuration.
 class AbstractUniversalProcess
           
 class JVMNodeProcess
           This class has the same functionalities than JVMProcess, except that the class associated with this process ie the class that this process will start when the startProcess() is called, is set automatically to org.objectweb.proactive.core.runtime.startRuntime.This class is mainly used with XML deployment descriptor.
 class JVMProcessImpl
           The JVMProcess class is able to start localy any class of the ProActive library by creating a Java Virtual Machine.
 class SimpleExternalProcess
           The SimpleExternalProcess class is able to start any command line For instance ..............
 

Methods in org.objectweb.proactive.core.process that return UniversalProcess
 UniversalProcess SimpleExternalProcess.getFinalProcess()
           
 UniversalProcess AbstractListProcessDecorator.getFinalProcess()
           
 UniversalProcess JVMProcessImpl.getFinalProcess()
           
 UniversalProcess UniversalProcess.getFinalProcess()
          Returns the last process of the chain
 

Uses of UniversalProcess in org.objectweb.proactive.core.process.glite
 

Classes in org.objectweb.proactive.core.process.glite that implement UniversalProcess
 class GLiteProcess
          GLite Process implementation.
 

Methods in org.objectweb.proactive.core.process.glite that return UniversalProcess
 UniversalProcess GLiteProcess.getFinalProcess()
           
 

Uses of UniversalProcess in org.objectweb.proactive.core.process.globus
 

Classes in org.objectweb.proactive.core.process.globus that implement UniversalProcess
 class GlobusProcess
          Globus Process implementation.
 

Methods in org.objectweb.proactive.core.process.globus that return UniversalProcess
 UniversalProcess GlobusProcess.getFinalProcess()
           
 

Uses of UniversalProcess in org.objectweb.proactive.core.process.gridengine
 

Classes in org.objectweb.proactive.core.process.gridengine that implement UniversalProcess
 class GridEngineSubProcess
           The GridEngineSubProcess class is able to start any class, of the ProActive library, on a cluster managed by Sun Grid Engine protocol.
 

Methods in org.objectweb.proactive.core.process.gridengine that return UniversalProcess
 UniversalProcess GridEngineSubProcess.getFinalProcess()
           
 

Uses of UniversalProcess in org.objectweb.proactive.core.process.lsf
 

Classes in org.objectweb.proactive.core.process.lsf that implement UniversalProcess
 class CNLSFProcess
          Custom implementation of LSFProcess for CHINA GRID
 class LSFBSubProcess
           The LSFBSubProcess class is able to start any class, of the ProActive library, on a cluster managed by LSF prtocol.
 

Methods in org.objectweb.proactive.core.process.lsf that return UniversalProcess
 UniversalProcess LSFBSubProcess.getFinalProcess()
           
 

Uses of UniversalProcess in org.objectweb.proactive.core.process.nordugrid
 

Classes in org.objectweb.proactive.core.process.nordugrid that implement UniversalProcess
 class NGProcess
          NorduGrid Process implementation.
 

Methods in org.objectweb.proactive.core.process.nordugrid that return UniversalProcess
 UniversalProcess NGProcess.getFinalProcess()
           
 

Uses of UniversalProcess in org.objectweb.proactive.core.process.oar
 

Classes in org.objectweb.proactive.core.process.oar that implement UniversalProcess
 class OARGRIDSubProcess
           The OARGRIDSubProcess class is able to start any class, of the ProActive library, on a cluster managed by OARGRID protocol.
 class OARSubProcess
           The OARSubProcess class is able to start any class, of the ProActive library, on a cluster managed by OAR protocol.
 

Methods in org.objectweb.proactive.core.process.oar that return UniversalProcess
 UniversalProcess OARSubProcess.getFinalProcess()
           
 UniversalProcess OARGRIDSubProcess.getFinalProcess()
           
 

Uses of UniversalProcess in org.objectweb.proactive.core.process.pbs
 

Classes in org.objectweb.proactive.core.process.pbs that implement UniversalProcess
 class PBSSubProcess
           The PBSSubProcess class is able to start any class, of the ProActive library, on a cluster managed by PBS protocol.
 

Methods in org.objectweb.proactive.core.process.pbs that return UniversalProcess
 UniversalProcess PBSSubProcess.getFinalProcess()
           
 

Uses of UniversalProcess in org.objectweb.proactive.core.process.prun
 

Classes in org.objectweb.proactive.core.process.prun that implement UniversalProcess
 class PrunSubProcess
           The PrunSubProcess class is able to start any class, of the ProActive library, on a cluster using prun on top of PBS.
 

Methods in org.objectweb.proactive.core.process.prun that return UniversalProcess
 UniversalProcess PrunSubProcess.getFinalProcess()
           
 

Uses of UniversalProcess in org.objectweb.proactive.core.process.rlogin
 

Classes in org.objectweb.proactive.core.process.rlogin that implement UniversalProcess
 class RLoginProcess
           The RloginProcess class is able to start any class, of the ProActive library, using rlogin command.
 class RLoginProcessList
          This class contains a list of RSHProcess processes
 

Methods in org.objectweb.proactive.core.process.rlogin that return UniversalProcess
 UniversalProcess RLoginProcess.getFinalProcess()
           
 

Uses of UniversalProcess in org.objectweb.proactive.core.process.rsh
 

Classes in org.objectweb.proactive.core.process.rsh that implement UniversalProcess
 class RSHHierarchicalProcess
          This process starts a forwarder defined by the target process using RSH.
 class RSHJVMProcess
           The RSHJVMProcess class is able to start any class, of the ProActive library, using rsh protocol.
 class RSHNodeProcess
           This class has the same functionalities than RSHJVMProcess, except that the class associated with the target JVMProcess ie the class that the target process will start is set automatically to org.objectweb.proactive.core.runtime.startRuntime.
 class RSHProcess
           The RSHProcess class is able to start any class, of the ProActive library, using rsh protocol.
 class RSHProcessList
          This class contains a list of RSHProcess processes
 

Methods in org.objectweb.proactive.core.process.rsh that return UniversalProcess
 UniversalProcess RSHProcess.getFinalProcess()
           
 

Uses of UniversalProcess in org.objectweb.proactive.core.process.rsh.maprsh
 

Classes in org.objectweb.proactive.core.process.rsh.maprsh that implement UniversalProcess
 class MapRshProcess
           The MapRshProcess class is able to start any class, of the ProActive library, using maprsh.
 

Methods in org.objectweb.proactive.core.process.rsh.maprsh that return UniversalProcess
 UniversalProcess MapRshProcess.getFinalProcess()
           
 

Uses of UniversalProcess in org.objectweb.proactive.core.process.ssh
 

Classes in org.objectweb.proactive.core.process.ssh that implement UniversalProcess
 class SSHHierarchicalProcess
          This process starts a forwarder defined by the target process using SSH.
 class SSHJVMProcess
           The SSHJVMProcess class is able to start any class, of the ProActive library, using ssh protocol.
 class SSHNodeProcess
           This class has the same functionalities than SSHJVMProcess, except that the class associated with the target JVMProcess ie the class that the target process will start is set automatically to org.objectweb.proactive.core.runtime.startRuntime.
 class SSHProcess
           The SSHProcess class is able to start any class, of the ProActive library, using ssh protocol.
 class SSHProcessList
          This class contains a list of SSHProcess processes
 

Methods in org.objectweb.proactive.core.process.ssh that return UniversalProcess
 UniversalProcess SSHProcess.getFinalProcess()
           
 

Uses of UniversalProcess in org.objectweb.proactive.core.process.unicore
 

Classes in org.objectweb.proactive.core.process.unicore that implement UniversalProcess
 class UnicoreProcess
          Unicore Process implementation.
 

Methods in org.objectweb.proactive.core.process.unicore that return UniversalProcess
 UniversalProcess UnicoreProcess.getFinalProcess()
           
 

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

Methods in org.objectweb.proactive.core.runtime with parameters of type UniversalProcess
 void ProActiveRuntimeForwarderImpl.createVM(UniqueRuntimeID urid, UniversalProcess remoteProcess)
           
 void ProActiveRuntimeForwarder.createVM(UniqueRuntimeID urid, UniversalProcess remoteProcess)
           
 void ProActiveRuntimeAdapterImpl.createVM(UniversalProcess remoteProcess)
           
 void RemoteProActiveRuntime.createVM(UniversalProcess remoteProcess)
           
 void RemoteProActiveRuntimeForwarder.createVM(UniqueRuntimeID ruid, UniversalProcess remoteProcess)
           
 void ProActiveRuntimeAdapterForwarderImpl.createVM(UniversalProcess remoteProcess)
           
 void ProActiveRuntimeImpl.createVM(UniversalProcess remoteProcess)
           
 void ProActiveRuntime.createVM(UniversalProcess remoteProcess)
          Creates a new ProActiveRuntime associated with a new VM on the host defined in the given process.
 

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

Methods in org.objectweb.proactive.core.runtime.http with parameters of type UniversalProcess
 void HttpProActiveRuntime.createVM(UniversalProcess remoteProcess)
           
 

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

Methods in org.objectweb.proactive.core.runtime.ibis with parameters of type UniversalProcess
 void IbisProActiveRuntimeImpl.createVM(UniversalProcess remoteProcess)
           
 

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

Methods in org.objectweb.proactive.core.runtime.rmi with parameters of type UniversalProcess
 void RmiProActiveRuntimeForwarderImpl.createVM(UniqueRuntimeID urid, UniversalProcess remoteProcess)
           
 void RmiProActiveRuntimeImpl.createVM(UniversalProcess remoteProcess)
           
 



Copyright 2001-2005 INRIA All Rights Reserved.