我尝试了Rust nanomsg pubsub example,但它不起作用。
我在单独的控制台窗口中完成了这些操作:
cargo run --example pubsub -- device hoge
显示
Subscribed to '[104, 111, 103, 101]'.
Device is ready.
cargo run --example pubsub -- client hoge
显示
Subscribed to '[104, 111, 103, 101]'.
cargo run --example pubsub -- server hoge
显示
Server is ready.
Published '[104, 111, 103, 101] #1'.
Published '[104, 111, 103, 101] #2'.
Published '[104, 111, 103, 101] #3'.
...
所有三个命令都继续运行,没有一个退出。我希望控制台2显示:
Subscribed to '[104, 111, 103, 101]'.
Recv '[104, 111, 103, 101] #1'.
Recv '[104, 111, 103, 101] #2'.
Recv '[104, 111, 103, 101] #3'.
...
但没有显示任何内容。
我的环境是
答案 0 :(得分:5)
这是服务器代码的问题,已在主分支(#173)中修复。这是错误的片段(from repo):
let msg = format!("{:?} #{}", topic, count);
match socket.write_all(msg.as_bytes()) {
Ok(..) => println!("Published '{}'.", msg),
Err(err) => {
println!("Server failed to publish '{}'.", err);
break
}
}
已发布的消息是使用format!
宏构建的,该宏不恰当地将主题打印为字节数组,而不是一段文本。一个不同的主题标识符导致没有订阅者收到该消息。
当前维护者修复了here示例。作为结束语,此API的用户必须记住,发布消息的第一个字节始终引用订阅主题。