/* * Copyright (C) 2018 Lightbend Inc. */ 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> orMap = ORMap.create(); // updated needs a cast ORMap> updated = orMap.update(node1, "key", PNCounterMap.create(), curr -> curr.decrement(node1, "key", 10)); updated.getEntries(); } }