Class QueueView
- java.lang.Object
- 
- org.apache.ignite.spi.systemview.view.datastructures.QueueView
 
- 
 public class QueueView extends Object Queue representation for aSystemView.
- 
- 
Constructor SummaryConstructors Constructor Description QueueView(org.apache.ignite.internal.processors.datastructures.GridCacheQueueProxy<?> queue)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanbounded()intcapacity()booleancollocated()intgroupId()StringgroupName()IgniteUuidid()Stringname()booleanremoved()intsize()
 
- 
- 
- 
Method Detail- 
idpublic IgniteUuid id() - Returns:
- Queue id.
 
 - 
namepublic String name() - Returns:
- Queue name.
 
 - 
capacitypublic int capacity() - Returns:
- Queue capacity.
 
 - 
sizepublic int size() - Returns:
- Queue size.
 
 - 
groupNamepublic String groupName() - Returns:
- Cache group name where values for queue stored.
 
 - 
groupIdpublic int groupId() - Returns:
- Cache group id where values for queue stored.
 
 - 
boundedpublic boolean bounded() - Returns:
- If truethen queue capacity is bounded.
 
 - 
collocatedpublic boolean collocated() - Returns:
- Collocated flag.
 
 - 
removedpublic boolean removed() - Returns:
- If truethen this queue removed.
 
 
- 
 
-