Class ScanQuerySystemView<K,V>
- java.lang.Object
-
- org.apache.ignite.internal.managers.systemview.ScanQuerySystemView<K,V>
-
- All Implemented Interfaces:
Iterable<ScanQueryView>,SystemView<ScanQueryView>
public class ScanQuerySystemView<K,V> extends Object
SystemViewimplementation providing data about cache queries.
-
-
Field Summary
Fields Modifier and Type Field Description static StringSCAN_QRY_SYS_VIEWScan query system view.static StringSCAN_QRY_SYS_VIEW_DESCScan query system view description.
-
Constructor Summary
Constructors Constructor Description ScanQuerySystemView(Collection<GridCacheContext<K,V>> cctxs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringdescription()@NotNull Iterator<ScanQueryView>iterator()Stringname()intsize()SystemViewRowAttributeWalker<R>walker()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Field Detail
-
SCAN_QRY_SYS_VIEW
public static final String SCAN_QRY_SYS_VIEW
Scan query system view.
-
SCAN_QRY_SYS_VIEW_DESC
public static final String SCAN_QRY_SYS_VIEW_DESC
Scan query system view description.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ScanQuerySystemView
public ScanQuerySystemView(Collection<GridCacheContext<K,V>> cctxs)
- Parameters:
cctxs- Cache data.
-
-
Method Detail
-
size
public int size()
- Returns:
- Size of the view.
-
iterator
@NotNull public @NotNull Iterator<ScanQueryView> iterator()
-
name
public String name()
- Specified by:
namein interfaceSystemView<R>- Returns:
- View name.
-
description
public String description()
- Specified by:
descriptionin interfaceSystemView<R>- Returns:
- View description.
-
walker
public SystemViewRowAttributeWalker<R> walker()
- Specified by:
walkerin interfaceSystemView<R>- Returns:
- Helper for exporters.
-
-