Your IP : 216.73.216.220


Current Path : /var/www/html/vendor/magento/framework/Indexer/
Upload File :
Current File : /var/www/html/vendor/magento/framework/Indexer/IndexTableRowSizeEstimatorInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

namespace Magento\Framework\Indexer;

/**
 * Calculate memory size for entity according different dimensions.
 * @api
 * @since 101.0.0
 */
interface IndexTableRowSizeEstimatorInterface
{
    /**
     * Calculate memory size for entity row.
     *
     * @return float
     * @since 101.0.0
     */
    public function estimateRowSize();
}