芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/mctv/lib/Service/PlayerActionServiceInterface.php
. */ namespace Xibo\Service; use Xibo\Entity\Display; use Xibo\Support\Exception\GeneralException; use Xibo\XMR\PlayerAction; /** * Interface PlayerActionServiceInterface * @package Xibo\Service */ interface PlayerActionServiceInterface { /** * PlayerActionHelper constructor. * @param ConfigServiceInterface * @param LogServiceInterface * @param bool */ public function __construct($config, $log, $triggerPlayerActions); /** * @param Display[]|Display $displays * @param PlayerAction $action * @throws GeneralException */ public function sendAction($displays, $action); /** * Process the Queue of Actions * @throws GeneralException */ public function processQueue(); }