Examples of NodeSPI


Examples of org.jboss.cache.NodeSPI

            for (Address a : toRemove)
            {
               BuddyGroup bg = buddyGroupsIParticipateIn.remove(a);
               Fqn backupRootFqn = buddyFqnTransformer.getBackupRoot(bg.getDataOwner());
               NodeSPI backupRoot = cache.getNode(backupRootFqn);
               if (backupRoot != null)
               {
                  // could be a race condition where the backup region has been removed because we have been removed
                  // from the buddy group, but the buddyGroupsIParticipateIn map hasn't been updated.
                  migrateDefunctData(backupRoot, bg.getDataOwner());
View Full Code Here

Examples of org.jboss.cache.NodeSPI

   }

   public void setState(ObjectInputStream in, Fqn targetRoot) throws Exception
   {
      cache.getInvocationContext().getOptionOverrides().setSkipCacheStatusCheck(true);
      NodeSPI target = cache.getNode(targetRoot);
      if (target == null)
      {
         // Create the integration root, but do not replicate
         cache.getInvocationContext().getOptionOverrides().setCacheModeLocal(true);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.