Package io.tarantool.driver.api.metadata
Interface TarantoolMetadataContainer
-
- All Known Implementing Classes:
ProxyTarantoolMetadataContainer
,SpacesTarantoolMetadataContainer
public interface TarantoolMetadataContainer
Contains information about spaces and their indexes, parsed from an external source
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,Map<String,TarantoolIndexMetadata>>
getIndexMetadataBySpaceName()
Get index metadata mapped to index name and then to space nameMap<String,TarantoolSpaceMetadata>
getSpaceMetadataByName()
Get space metadata mapped to space name
-
-
-
Method Detail
-
getSpaceMetadataByName
Map<String,TarantoolSpaceMetadata> getSpaceMetadataByName()
Get space metadata mapped to space name- Returns:
- map of space metadata, must not be null
-
getIndexMetadataBySpaceName
Map<String,Map<String,TarantoolIndexMetadata>> getIndexMetadataBySpaceName()
Get index metadata mapped to index name and then to space name- Returns:
- map of index metadata, must not be null
-
-