GetConnectModuleServiceInterface.php 268 Bytes
Newer Older
1 2
<?php

3
namespace Meibuyu\Rpc\Service\Interfaces\Flow;
4 5 6 7 8 9 10 11 12

interface GetConnectModuleServiceInterface
{
    /**
     *通过通道名称获取process_id
     * @param string $channel 通道名
     * @return mixed
     */
    public function getConnectModule($channel);
13
}