Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-catalog-url-rewrite/Model/Map/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-catalog-url-rewrite/Model/Map/HashMapInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\CatalogUrlRewrite\Model\Map;

/**
 * Interface for a hash data map
 *
 * It is used for classes that will build hash maps and store them into memory
 * The initialization is done transparently whenever getAllData or getData is called
 * The map, upon initialization, might have a dependency on some other DataMapInterfaces
 * The map has to free memory after we're done using it
 * We need to destroy those maps too when calling resetData
 *
 * @api
 */
interface HashMapInterface
{
    /**
     * Gets all data from a map identified by a category Id
     *
     * @param int $categoryId
     * @return array
     */
    public function getAllData($categoryId);

    /**
     * Gets data by criteria from a map identified by a category Id
     *
     * @param int $categoryId
     * @param string $key
     * @return array
     */
    public function getData($categoryId, $key);

    /**
     * Resets current map by freeing memory and also to its dependencies
     *
     * @param int $categoryId
     * @return void
     */
    public function resetData($categoryId);
}