Interface SystemView<R>
-
- Type Parameters:
R
- Type of the row.
- All Superinterfaces:
Iterable<R>
- All Known Subinterfaces:
FiltrableSystemView<R>
public interface SystemView<R> extends Iterable<R>
Implementation provides data for some internal Ignite objects.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
description()
String
name()
int
size()
SystemViewRowAttributeWalker<R>
walker()
-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
-
-
-
Method Detail
-
walker
SystemViewRowAttributeWalker<R> walker()
- Returns:
- Helper for exporters.
-
name
String name()
- Returns:
- View name.
-
description
String description()
- Returns:
- View description.
-
size
int size()
- Returns:
- Size of the view.
-
-