<?php
namespace Rpc;
interface IProducer
{
/**
* @return Client
* 初始化一个客户端
*/
public function initClient(): Client;
}