IndexTableRowSizeEstimatorInterface.php 446 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Indexer;
  7. /**
  8. * Calculate memory size for entity according different dimensions.
  9. * @api
  10. * @since 101.0.0
  11. */
  12. interface IndexTableRowSizeEstimatorInterface
  13. {
  14. /**
  15. * Calculate memory size for entity row.
  16. *
  17. * @return float
  18. * @since 101.0.0
  19. */
  20. public function estimateRowSize();
  21. }