Class SetView
- java.lang.Object
-
- org.apache.ignite.spi.systemview.view.datastructures.SetView
-
public class SetView extends Object
Set representation for aSystemView
.
-
-
Constructor Summary
Constructors Constructor Description SetView(org.apache.ignite.internal.processors.datastructures.GridCacheSetProxy<?> set)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
collocated()
int
groupId()
String
groupName()
IgniteUuid
id()
String
name()
boolean
removed()
int
size()
-
-
-
Method Detail
-
id
public IgniteUuid id()
- Returns:
- Set id.
-
name
public String name()
- Returns:
- Set name.
-
size
public int size()
- Returns:
- Set size.
-
groupName
public String groupName()
- Returns:
- Cache group name where values for set stored.
-
groupId
public int groupId()
- Returns:
- Cache group id where values for set stored.
-
collocated
public boolean collocated()
- Returns:
- Collocated flag.
-
removed
public boolean removed()
- Returns:
- If
true
then this set removed.
-
-