, , , , Hazelcast. , IAtomicReference, , , .
node Hazelcast , :
HazelcastInstance instance = Hazelcast.newHazelcastInstance();
, config xml , . , , - :
IAtomicReference<Foo> ref = instance.getAtomicReference("terefere");
if(ref.isNull()){
ref.set(new Foo());
}
, , :
ref.apply(foo -> foo.setBar(true));