io.tarantool.driver.api.metadata.TarantoolMetadataContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cartridge-driver Show documentation
Show all versions of cartridge-driver Show documentation
Tarantool Cartridge driver for Tarantool versions 1.10+ based on Netty framework
package io.tarantool.driver.api.metadata;
import java.util.Map;
/**
* Contains information about spaces and their indexes, parsed from an external source
*
* @author Alexey Kuzin
*/
public interface TarantoolMetadataContainer {
/**
* Get space metadata mapped to space name
*
* @return map of space metadata, must not be null
*/
Map getSpaceMetadataByName();
/**
* Get index metadata mapped to index name and then to space name
*
* @return map of index metadata, must not be null
*/
Map> getIndexMetadataBySpaceName();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy