Uses of Interface
org.objectweb.proactive.core.body.MetaObjectFactory

Packages that use MetaObjectFactory
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.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.rmi The body of an active object act as a hub of communication with other remote objects.  
org.objectweb.proactive.core.component This package and sub-packages provide an implementation with ProActive of the Fractal 2.0 component model.  
org.objectweb.proactive.core.component.body Component meta-objects are created from the ComponentBody.  
org.objectweb.proactive.ext.locationserver Defines a Body associated with a location server able to give the location of one body on demand.  
org.objectweb.proactive.ext.mixedlocation   
 

Uses of MetaObjectFactory in org.objectweb.proactive
 

Methods in org.objectweb.proactive with parameters of type MetaObjectFactory
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.newActiveAsGroup(java.lang.String classname, java.lang.Object[] constructorParameters, VirtualNode virtualnode, Active activity, MetaObjectFactory factory)
          Creates a new group of Active Objects.
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 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, 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.
 

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

Classes in org.objectweb.proactive.core.body that implement MetaObjectFactory
 class ProActiveMetaObjectFactory
          THIS JAVADOC SHOULD BE REWRITTEN This class provides singleton instances of all default factories creating MetaObjects used in the Body.
 

Methods in org.objectweb.proactive.core.body that return MetaObjectFactory
static MetaObjectFactory ProActiveMetaObjectFactory.newInstance()
           
 MetaObjectFactory LocalBodyStore.getHalfBodyMetaObjectFactory()
           
 

Methods in org.objectweb.proactive.core.body with parameters of type MetaObjectFactory
static void ProActiveMetaObjectFactory.setNewInstance(MetaObjectFactory mo)
           
 void LocalBodyStore.setHalfBodyMetaObjectFactory(MetaObjectFactory factory)
           
static HalfBody HalfBody.getHalfBody(MetaObjectFactory factory)
           
 

Constructors in org.objectweb.proactive.core.body with parameters of type MetaObjectFactory
BodyImpl(java.lang.Object reifiedObject, java.lang.String nodeURL, MetaObjectFactory factory, java.lang.String jobId)
          Creates a new AbstractBody for an active object attached to a given node.
ActiveBody(ConstructorCall c, java.lang.String nodeURL, Active activity, MetaObjectFactory factory, java.lang.String jobID)
          Builds the body object, then fires its service thread
AbstractBody(java.lang.Object reifiedObject, java.lang.String nodeURL, MetaObjectFactory factory, java.lang.String jobId)
          Creates a new AbstractBody for an active object attached to a given node.
 

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

Classes in org.objectweb.proactive.core.body.http that implement MetaObjectFactory
 class ProActiveHttpMetaObjectFactory
           
 

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

Classes in org.objectweb.proactive.core.body.ibis that implement MetaObjectFactory
 class ProActiveIbisMetaObjectFactory
           This class provides singleton instances of all default factories creating MetaObjects used in the Body.
 

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

Classes in org.objectweb.proactive.core.body.jini that implement MetaObjectFactory
 class ProActiveJiniMetaObjectFactory
           This class provides singleton instances of all default factories creating MetaObjects used in the Body.
 

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

Constructors in org.objectweb.proactive.core.body.migration with parameters of type MetaObjectFactory
MigratableBody(java.lang.Object reifiedObject, java.lang.String nodeURL, MetaObjectFactory factory, java.lang.String jobID)
           
 

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

Classes in org.objectweb.proactive.core.body.rmi that implement MetaObjectFactory
 class ProActiveRmiMetaObjectFactory
           
 

Uses of MetaObjectFactory in org.objectweb.proactive.core.component
 

Subinterfaces of MetaObjectFactory in org.objectweb.proactive.core.component
 interface ComponentMetaObjectFactory
          Meta-object factory for the components.
 

Methods in org.objectweb.proactive.core.component that return MetaObjectFactory
 MetaObjectFactory ContentDescription.getFactory()
          getter for the metaobjects factory
 

Methods in org.objectweb.proactive.core.component with parameters of type MetaObjectFactory
 void ContentDescription.setFactory(MetaObjectFactory factory)
          setter (visibility is reduced)
 

Constructors in org.objectweb.proactive.core.component with parameters of type MetaObjectFactory
ContentDescription(java.lang.String className, java.lang.Object[] constructorParameters, VirtualNode virtualNode, Active activity, MetaObjectFactory factory)
          constructor
ContentDescription(java.lang.String className, java.lang.Object[] constructorParameters, Node node, Active activity, MetaObjectFactory factory)
          constructor
 

Uses of MetaObjectFactory in org.objectweb.proactive.core.component.body
 

Constructors in org.objectweb.proactive.core.component.body with parameters of type MetaObjectFactory
ComponentBodyImpl(java.lang.Object reifiedObject, java.lang.String nodeURL, Active activity, MetaObjectFactory factory, java.lang.String jobID)
          Constructor for ComponentBodyImpl.
 

Uses of MetaObjectFactory in org.objectweb.proactive.ext.locationserver
 

Classes in org.objectweb.proactive.ext.locationserver that implement MetaObjectFactory
 class LocationServerMetaObjectFactory
           This class overrides the default Factory to provide Request and MigrationManager with location server.
 

Methods in org.objectweb.proactive.ext.locationserver that return MetaObjectFactory
static MetaObjectFactory LocationServerMetaObjectFactory.newInstance()
           
 

Uses of MetaObjectFactory in org.objectweb.proactive.ext.mixedlocation
 

Classes in org.objectweb.proactive.ext.mixedlocation that implement MetaObjectFactory
 class MixedLocationMetaObjectFactory
           This class overrides the default Factory to provide Request and MigrationManager with a mixed location server.
 

Methods in org.objectweb.proactive.ext.mixedlocation that return MetaObjectFactory
static MetaObjectFactory MixedLocationMetaObjectFactory.newInstance()
           
 



Copyright 2001-2005 INRIA All Rights Reserved.