All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.tarantool.driver.api.metadata.TarantoolMetadataContainer Maven / Gradle / Ivy

Go to download

Tarantool Cartridge driver for Tarantool versions 1.10+ based on Netty framework

There is a newer version: 0.14.0
Show newest version
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