Class AtomicLongView
- java.lang.Object
-
- org.apache.ignite.spi.systemview.view.datastructures.AtomicLongView
-
public class AtomicLongView extends Object
IgniteAtomicLong
representation for aSystemView
.
-
-
Field Summary
Fields Modifier and Type Field Description protected T
ds
Data structure instance.
-
Constructor Summary
Constructors Constructor Description AtomicLongView(org.apache.ignite.internal.processors.datastructures.GridCacheRemovable ds)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
groupId()
String
groupName()
String
name()
boolean
removed()
long
value()
-
-
-
Method Detail
-
value
public long value()
- Returns:
- Value.
- See Also:
IgniteAtomicLong.get()
-
name
public String name()
- Returns:
- Name.
-
groupName
public String groupName()
- Returns:
- Group name.
-
groupId
public int groupId()
- Returns:
- Group id.
-
removed
public boolean removed()
- Returns:
True
is data structure removed.
-
-