Package aleph.dir

Examples of aleph.dir.RegisterObject


        }
        Logger.debug("I'm new owner of " + key);
        key.setHome(PE.thisPE())// me is the new owner
        ObjectsRegistery.regsiterObject(key)// register key local
        locator.newObject(key, object)// register at the directory manager
        PE.thisPE().populate(new RegisterObject(key))// populate me as the new owner
        Logger.debug("Populate me owner of " + key);
        // FIXME: if more than one local transaction at this node then we should release the object now not before changing its location
      }
    }
   
View Full Code Here


        }
        Logger.debug("I'm new owner of " + key);
        key.setHome(PE.thisPE())// me is the new owner
        ObjectsRegistery.regsiterObject(key)// register key local
        locator.newObject(key, object)// register at the directory manager
        PE.thisPE().populate(new RegisterObject(key))// populate me as the new owner
        Logger.debug("Populate me owner of " + key);
        // FIXME: if more than one local transaction at this node then we should release the object now not before changing its location
      }
    }
       
View Full Code Here

        }
       
        key.setHome(PE.thisPE())// me is the new owner
        ObjectsRegistery.regsiterObject(key)// register key local
        locator.newObject(key, object)// register at the directory manager
        PE.thisPE().populate(new RegisterObject(key))// populate me as the new owner
        Logger.debug("Populate me owner of " + key);
        // FIXME: if more than one local transaction at this node then we should release the object now not before changing its location
      }
    }
View Full Code Here

        dirManager.newObject(this, object, hint);
      }

      ObjectsRegistery.regsiterObject(this);
      if(object!=null)
        PE.thisPE().populate(new RegisterObject(this))// REGISTER AT THE OTHER PEs
  }
View Full Code Here

TOP

Related Classes of aleph.dir.RegisterObject

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.