![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/app/code/Webkul/PrivateShop/Api/Config/ |
<?php /** * Webkul Software * * @category Webkul * @package Webkul_PrivateShop * @author Webkul Software Private Limited * @copyright Webkul Software Private Limited (https://webkul.com) * @license https://store.webkul.com/license.html */ namespace Webkul\PrivateShop\Api\Config; interface ConfigInterface { /** * Return the list of configured brokers * * @return string[] */ public function getBrokerNames(); /** * Return an instance of the given broker * * @param mixed $name * @return \Webkul\PrivateShop\Api\BrokerInstance */ public function getBrokerInstance($name); /** * Return the list of configured queues * * @return string[] */ public function getQueueNames(); /** * Return the queue broker code * * @param string $name * @return string */ public function getQueueBroker($name); /** * Return an instance of the queue broker * * @param mixed $name * @return \Webkul\PrivateShop\Api\BrokerInstance */ public function getQueueBrokerInstance($name); /** * Return an instance of the queue consumer * * @param mixed $name * @return \Webkul\PrivateShop\Api\ConsumerInstance */ public function getQueueConsumerInstance($name); /** * Return an the queue message schema * * @param mixed $name * @return mixed */ public function getQueueMessageSchema($name); }