コード例 #1
0
  /**
   * @param cache Cache.
   * @return Cache.
   */
  protected <K, V> GridCacheAdapter<K, V> internalCache(IgniteCache<K, V> cache) {
    if (isMultiJvmObject(cache))
      throw new UnsupportedOperationException(
          "Oparetion can't be supported automatically for multi jvm " + "(send closure instead).");

    return ((IgniteKernal) cache.unwrap(Ignite.class)).internalCache(cache.getName());
  }
コード例 #2
0
 /**
  * @param cache Cache.
  * @return DHT cache.
  */
 protected static <K, V> GridDhtCacheAdapter<K, V> dht(IgniteCache<K, V> cache) {
   return nearEnabled(cache)
       ? near(cache).dht()
       : ((IgniteKernal) cache.unwrap(Ignite.class))
           .<K, V>internalCache(cache.getName())
           .context()
           .dht();
 }
コード例 #3
0
 /** @param cache Cache. */
 protected <K, V> GridCacheAdapter<K, V> cacheFromCtx(IgniteCache<K, V> cache) {
   return ((IgniteKernal) cache.unwrap(Ignite.class))
       .<K, V>internalCache(cache.getName())
       .context()
       .cache();
 }
コード例 #4
0
 /**
  * @param cache Cache.
  * @return Local node.
  */
 public static ClusterNode localNode(IgniteCache<?, ?> cache) {
   return cache.unwrap(Ignite.class).cluster().localNode();
 }
コード例 #5
0
 /**
  * @param cache Cache.
  * @return Affinity.
  */
 public static <K> Affinity<K> affinity(IgniteCache<K, ?> cache) {
   return cache.unwrap(Ignite.class).affinity(cache.getName());
 }
コード例 #6
0
 /**
  * @param cache Cache.
  * @return Colocated cache.
  */
 protected static <K, V> GridDhtColocatedCache<K, V> colocated(IgniteCache<K, V> cache) {
   return ((IgniteKernal) cache.unwrap(Ignite.class))
       .<K, V>internalCache(cache.getName())
       .context()
       .colocated();
 }
コード例 #7
0
 /**
  * @param cache Cache.
  * @return Near cache.
  */
 protected static <K, V> GridNearCacheAdapter<K, V> near(IgniteCache<K, V> cache) {
   return ((IgniteKernal) cache.unwrap(Ignite.class))
       .<K, V>internalCache(cache.getName())
       .context()
       .near();
 }