Your IP : 3.146.255.161


Current Path : /var/www/www-root/data/www/monolith-realty.ru/bitrix/modules/main/lib/grid/
Upload File :
Current File : /var/www/www-root/data/www/monolith-realty.ru/bitrix/modules/main/lib/grid/gridresponse.php

<?php

namespace Bitrix\Main\Grid;

/**
 * Grid's response after processing the request.
 *
 * @see \Bitrix\Main\Grid\Grid method `processRequest`
 * @see \Bitrix\Main\Grid\Panel\Panel method `processRequest`
 * @see \Bitrix\Main\Grid\Row\Rows method `processRequest`
 */
interface GridResponse
{
	/**
	 * Send response.
	 *
	 * @return void
	 */
	public function send(): void;

	/**
	 * Is possible to send this response?
	 *
	 * @return bool
	 */
	public function isSendable(): bool;
}