123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Mview\View;
- /**
- * Interface \Magento\Framework\Mview\View\SubscriptionInterface
- *
- */
- interface SubscriptionInterface
- {
- /**
- * Create subsciption
- *
- * @return \Magento\Framework\Mview\View\SubscriptionInterface
- */
- public function create();
- /**
- * Remove subscription
- *
- * @return \Magento\Framework\Mview\View\SubscriptionInterface
- */
- public function remove();
- /**
- * Retrieve View related to subscription
- *
- * @return \Magento\Framework\Mview\ViewInterface
- */
- public function getView();
- /**
- * Retrieve table name
- *
- * @return string
- */
- public function getTableName();
- /**
- * Retrieve table column name
- *
- * @return string
- */
- public function getColumnName();
- }
|