Uses of Interface
org.apache.ignite.IgniteAtomicReference
-
Packages that use IgniteAtomicReference Package Description org.apache.ignite Contains entry-point Ignite & HPC APIs.org.apache.ignite.internal Contains main implementation.org.apache.ignite.internal.processors.datastructures -
-
Uses of IgniteAtomicReference in org.apache.ignite
Methods in org.apache.ignite that return IgniteAtomicReference Modifier and Type Method Description <T> IgniteAtomicReference<T>Ignite. atomicReference(String name, AtomicConfiguration cfg, T initVal, boolean create)Will get a atomic reference from cache and create one if it has not been created yet andcreateflag istrue.<T> IgniteAtomicReference<T>Ignite. atomicReference(String name, T initVal, boolean create)Will get a atomic reference from cache and create one if it has not been created yet andcreateflag istrue. -
Uses of IgniteAtomicReference in org.apache.ignite.internal
Methods in org.apache.ignite.internal that return IgniteAtomicReference Modifier and Type Method Description <T> IgniteAtomicReference<T>IgniteKernal. atomicReference(String name, AtomicConfiguration cfg, T initVal, boolean create)Will get a atomic reference from cache and create one if it has not been created yet andcreateflag istrue.<T> @Nullable IgniteAtomicReference<T>IgniteKernal. atomicReference(String name, T initVal, boolean create)Will get a atomic reference from cache and create one if it has not been created yet andcreateflag istrue. -
Uses of IgniteAtomicReference in org.apache.ignite.internal.processors.datastructures
Subinterfaces of IgniteAtomicReference in org.apache.ignite.internal.processors.datastructures Modifier and Type Interface Description interfaceGridCacheAtomicReferenceEx<T>Atomic reference managed by cache ('Ex'stands for external).Classes in org.apache.ignite.internal.processors.datastructures that implement IgniteAtomicReference Modifier and Type Class Description classGridCacheAtomicReferenceImpl<T>Cache atomic reference implementation.Methods in org.apache.ignite.internal.processors.datastructures that return IgniteAtomicReference Modifier and Type Method Description <T> IgniteAtomicReference<T>DataStructuresProcessor. atomicReference(String name, @Nullable AtomicConfiguration cfg, T initVal, boolean create)Gets an atomic reference from cache or creates one if it's not cached.
-