初级会员
  • 第 36001 位会员
  • _Stydy
  • 2019-04-30 17:20:43
  • Offline
  • 20 8

最近发布的主题

    暂无

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • 评论了博文 golang连接activemq
    根据名字来区分topic与queue 发送一条queue消息: /queue/${name} 发送一条topic消息: /topic/${name} ``` // 格式化要发送消息的类型 // @param msgType 消息类型 // @param name 消息名称 func (this *activeMq) formatName(msgType int, name string) string { // 通过名字前缀来确认消息类型 // 在真实发送出去的名字中会去掉 /.../ 符号 // 坑。。。。 // /top/testName 发送一条名为testName的topic消息 // /queue/testName 发送一条名为testName的queue消息 if msgType == typeTopic { return fmt.Sprintf("/topic/%v", name) } return fmt.Sprintf("/queue/%v", name) } ```
  • 1759480052@qq.com 谢谢了