Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/framework/View/Element/UiComponent/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/framework/View/Element/UiComponent/SubjectInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Framework\View\Element\UiComponent;

/**
 * Interface SubjectInterface
 *
 * @api
 */
interface SubjectInterface
{
    /**
     * Attach an observer by type
     *
     * @param string $type
     * @param ObserverInterface $observer
     * @return void
     */
    public function attach($type, ObserverInterface $observer);

    /**
     * Detach an observer by type
     *
     * @param string $type
     * @param ObserverInterface $observer
     * @return void
     */
    public function detach($type, ObserverInterface $observer);

    /**
     * Notify an observer(s) by type
     *
     * @param string $type
     * @return void
     */
    public function notify($type);
}