cache.putIfAbsent(key, value);
cache.get(key).method();
Given code produces NPE at second line. Here is how I create cache:
ClientCacheConfiguration cacheConfig = new ClientCacheConfiguration().setCacheMode(CacheMode.REPLICATED) .setName("POSITION");
cache = igniteClient.getOrCreateCache(cacheConfig);