22 lines
557 B
Java
22 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();
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|