pekko/akka-distributed-data/src/test/java/akka/cluster/ddata/ORMapTest.java
Christopher Batey 14377ae8cf 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
2018-12-04 14:51:41 +01:00

21 lines
557 B
Java

/*
* 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();
}
}