使用 Go-Stomp,可以使用以下代码获取连接。
if conn, err = stomp.Dial("tcp",
Broker.URI,
stomp.ConnOpt.Login(Broker.User, Broker.Password)); err != nil {
panic(fmt.Sprintf("Could not connect to ActiveMQ using brokerUri %v. Can not continue.", Broker.URI))
}
连接是否可以缓存以重复使用以发送不同请求的消息?还是每次要发送消息时都需要获取连接?
后来听起来效率低下。连接实例上的
Send方法会在出现故障时关闭连接。因此,如果我们缓存它,则必须检查连接是否仍然存在以供后续发送消息调用。但是我没有找到检查连接是否关闭的方法?Conn结构具有封闭成员,但这不会通过任何方法公开。
// A Conn is a connection to a STOMP server. Create a Conn using either
// the Dial or Connect function.
type Conn struct {
conn io.ReadWriteCloser
readCh chan *frame.Frame
writeCh chan writeRequest
version Version
session string
server string
readTimeout time.Duration
writeTimeout time.Duration
closed bool
options *connOptions
}
慕的地6264312
守着星空守着你
相关分类