<?php
namespace Mirasvit\CacheWarmer\Controller\Adminhtml\Page\Curl;

/**
 * Interceptor class for @see \Mirasvit\CacheWarmer\Controller\Adminhtml\Page\Curl
 */
class Interceptor extends \Mirasvit\CacheWarmer\Controller\Adminhtml\Page\Curl implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Mirasvit\CacheWarmer\Api\Repository\WarmRuleRepositoryInterface $warmRuleRepository, \Mirasvit\CacheWarmer\Service\WarmRuleService $warmRuleService, \Mirasvit\CacheWarmer\Service\CurlService $curlService, \Mirasvit\CacheWarmer\Api\Repository\PageRepositoryInterface $pageRepository, \Mirasvit\CacheWarmer\Api\Service\WarmerServiceInterface $warmerService, \Mirasvit\CacheWarmer\Api\Service\SessionServiceInterface $sessionService, \Magento\Framework\Module\ModuleListInterface $moduleList, \Mirasvit\CacheWarmer\Model\Config $config, \Magento\Ui\Component\MassAction\Filter $filter, \Magento\Backend\App\Action\Context $context)
    {
        $this->___init();
        parent::__construct($warmRuleRepository, $warmRuleService, $curlService, $pageRepository, $warmerService, $sessionService, $moduleList, $config, $filter, $context);
    }

    /**
     * {@inheritdoc}
     */
    public function execute()
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'execute');
        return $pluginInfo ? $this->___callPlugins('execute', func_get_args(), $pluginInfo) : parent::execute();
    }

    /**
     * {@inheritdoc}
     */
    public function dispatch(\Magento\Framework\App\RequestInterface $request)
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'dispatch');
        return $pluginInfo ? $this->___callPlugins('dispatch', func_get_args(), $pluginInfo) : parent::dispatch($request);
    }
}
