Add additional java api for updated for ORMap (#25926)

* Add additional java api for updated for ORMap

Existing updated is ambiguous from Java with the Scala API.

* Remove warnings from DurablePruningSpec
This commit is contained in:
Christopher Batey 2018-12-04 13:51:41 +00:00 committed by Patrik Nordwall
parent 1a25c8a5ad
commit 14377ae8cf
4 changed files with 52 additions and 3 deletions

View file

@ -0,0 +1,21 @@
/*
* Copyright (C) 2018 Lightbend Inc. <https://www.lightbend.com>
*/
package akka.cluster.ddata;
import akka.cluster.Cluster;
public class ORMapTest {
public void compileOnlyORMapTest() {
// primarily to check API accessibility with overloads/types
Cluster node1 = null;
ORMap<String, PNCounterMap<String>> orMap = ORMap.create();
// updated needs a cast
ORMap<String, PNCounterMap<String>> updated = orMap.update(node1, "key", PNCounterMap.create(), curr -> curr.decrement(node1, "key", 10));
updated.getEntries();
}
}