Repository: incubator-ignite Updated Branches: refs/heads/ignite-648 8b77a7fc9 -> 5d0c2e794
# ignite-648: fix compilation Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/9bc6be9e Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/9bc6be9e Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/9bc6be9e Branch: refs/heads/ignite-648 Commit: 9bc6be9eadd6562baf646f239b1b0f9914c4508f Parents: 8b77a7f Author: ashutak <ashu...@gridgain.com> Authored: Tue Jun 9 13:19:57 2015 +0300 Committer: ashutak <ashu...@gridgain.com> Committed: Tue Jun 9 13:19:57 2015 +0300 ---------------------------------------------------------------------- .../cache/multijvm/framework/IgniteCacheProcessProxy.java | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/9bc6be9e/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/multijvm/framework/IgniteCacheProcessProxy.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/multijvm/framework/IgniteCacheProcessProxy.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/multijvm/framework/IgniteCacheProcessProxy.java index 4c0e8d7..32c0bff 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/multijvm/framework/IgniteCacheProcessProxy.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/multijvm/framework/IgniteCacheProcessProxy.java @@ -244,6 +244,14 @@ public class IgniteCacheProcessProxy<K, V> implements IgniteCache<K, V> { }); } + @Override public Map<K, V> getAllOutTx(final Set<? extends K> keys) { + return (Map<K, V>)compute.call(new IgniteCallable<Object>() { + @Override public Object call() throws Exception { + return cache().getAllOutTx(keys); + } + }); + } + /** {@inheritDoc} */ @Override public boolean containsKey(final K key) { return (boolean)compute.call(new IgniteCallable<Object>() {