Skip to content

Commit

Permalink
sp-1 minor (start nodes invesigation)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yakov Zhdanov committed Feb 14, 2015
1 parent 671d144 commit 8d347ed
Showing 1 changed file with 4 additions and 5 deletions.
Expand Up @@ -25,9 +25,7 @@
import org.apache.ignite.internal.util.typedef.*;
import org.apache.ignite.internal.util.typedef.internal.*;
import org.apache.ignite.lang.*;
import org.springframework.cache.annotation.*;

import javax.cache.*;
import java.io.*;
import java.util.*;

Expand All @@ -40,7 +38,8 @@
* {@link #setDataCacheName(String)} configuration property.
* <p>
* Under the hood, this cache manager will create a cache projection
* for each cache name provided in {@link Cacheable}, {@link CachePut},
* for each cache name provided in {@link org.springframework.cache.annotation.Cacheable},
* {@link org.springframework.cache.annotation.CachePut},
* etc. annotations. Note that you're still able to use caches configured in
* Ignite configuration. Cache projection will be created only
* cache with provided name doesn't exist.
Expand Down Expand Up @@ -154,8 +153,8 @@ public void setDataCacheName(String dataCacheName) {
names,
F.transform(
metaCache.entrySetx(),
new IgniteClosure<Cache.Entry<MetaKey, org.springframework.cache.Cache>, String>() {
@Override public String apply(Cache.Entry<MetaKey, org.springframework.cache.Cache> e) {
new IgniteClosure<javax.cache.Cache.Entry<MetaKey, org.springframework.cache.Cache>, String>() {
@Override public String apply(javax.cache.Cache.Entry<MetaKey, org.springframework.cache.Cache> e) {
return e.getKey().name;
}
}));
Expand Down

0 comments on commit 8d347ed

Please sign in to comment.