Examples of locatePrimaryOwner()


Examples of org.infinispan.distribution.ch.ConsistentHash.locatePrimaryOwner()

      // search for a key that was migrated to third node and the suspended TX that locked it
      Object migratedKey = null;
      Transaction migratedTransaction = null;
      ConsistentHash consistentHash = advancedCache(2).getDistributionManager().getConsistentHash();
      for (Object key : key2Tx.keySet()) {
         if (consistentHash.locatePrimaryOwner(key).equals(address(2))) {
            migratedKey = key;
            migratedTransaction = key2Tx.get(key);
            log.trace("Migrated key = " + migratedKey);
            log.trace("Migrated transaction = " + ((DummyTransaction) migratedTransaction).getEnlistedResources());
            break;
View Full Code Here

Examples of org.infinispan.distribution.ch.ConsistentHash.locatePrimaryOwner()

      waitForClusterToForm();

      Object migratedKey = null;
      ConsistentHash ch = advancedCache(2).getDistributionManager().getConsistentHash();
      for (Object key : key2Tx.keySet()) {
         if (ch.locatePrimaryOwner(key).equals(address(2))) {
            migratedKey = key;
            break;
         }
      }
      if (migratedKey == null) {
View Full Code Here

Examples of org.infinispan.distribution.ch.ConsistentHash.locatePrimaryOwner()

      waitForClusterToForm();

      Object migratedKey = null;
      ConsistentHash ch = advancedCache(2).getDistributionManager().getConsistentHash();
      for (Object key : key2Tx.keySet()) {
         if (ch.locatePrimaryOwner(key).equals(address(2))) {
            migratedKey = key;
            break;
         }
      }
      if (migratedKey == null) {
View Full Code Here

Examples of org.infinispan.distribution.ch.ConsistentHash.locatePrimaryOwner()

      // search for a key that was migrated to third node and the suspended TX that locked it
      Object migratedKey = null;
      Transaction migratedTransaction = null;
      ConsistentHash consistentHash = advancedCache(2).getDistributionManager().getConsistentHash();
      for (Object key : key2Tx.keySet()) {
         if (consistentHash.locatePrimaryOwner(key).equals(address(2))) {
            migratedKey = key;
            migratedTransaction = key2Tx.get(key);
            log.trace("Migrated key = " + migratedKey);
            log.trace("Migrated transaction = " + ((DummyTransaction) migratedTransaction).getEnlistedResources());
            break;
View Full Code Here

Examples of org.infinispan.distribution.ch.ConsistentHash.locatePrimaryOwner()

      waitForClusterToForm();

      Object migratedKey = null;
      ConsistentHash ch = advancedCache(2).getDistributionManager().getConsistentHash();
      for (Object key : key2Tx.keySet()) {
         if (ch.locatePrimaryOwner(key).equals(address(2))) {
            migratedKey = key;
            break;
         }
      }
      if (migratedKey == null) {
View Full Code Here

Examples of org.infinispan.distribution.ch.ConsistentHash.locatePrimaryOwner()

      // search for a key that was migrated to third node and the suspended TX that locked it
      Object migratedKey = null;
      Transaction migratedTransaction = null;
      ConsistentHash consistentHash = advancedCache(2).getDistributionManager().getConsistentHash();
      for (Object key : key2Tx.keySet()) {
         if (consistentHash.locatePrimaryOwner(key).equals(address(2))) {
            migratedKey = key;
            migratedTransaction = key2Tx.get(key);
            log.trace("Migrated key = " + migratedKey);
            log.trace("Migrated transaction = " + ((DummyTransaction) migratedTransaction).getEnlistedResources());
            break;
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.