workbunny / webman-rabbitmq

🚀🐇 A PHP implementation of RabbitMQ Client for webman plugin.
https://www.workerman.net/plugin/67
MIT License
23 stars 4 forks source link

Update FastBuilder.php #4

Closed try-to closed 1 year ago

try-to commented 1 year ago

FastBuilder的message更快捷的从类属性中设置

chaz6chez commented 1 year ago

FastBuilder是一个默认以类名为名称的快速而简单的Builder类,所以没有queue、exchange等类属性作为自定义参数,而是直接使用转换过的类名,如果需要自定义Builder,实现BuilderInterface或者是继承FastBuilder且重写构造函数即可(推荐实现BuilderInterface的方案),这样的好处是,所使用的基础类,是显式的、可控的。