我正在尝试使用PubNub的状态功能,并将收到的信息作为正常消息中继。下面是我的订阅功能正常工作以及我的here_now没有给我任何东西。我想我想知道的是他们与众不同的原因和原因。正确实施的指针也很有价值。
pubnub.here_now({
'channel' => @channel,
'callback' => lambda do |x|
## Relay Message
sendMessage(x)
return true
end
})
pubnub.subscribe({
'channel' => @channel,
'callback' => lambda do |message|
## Relay Message
sendMessage(message)
return true
end
})
答案 0 :(得分:0)
对于使用您提供的内容进行非常简单的测试,您将需要在一个ruby脚本中运行subscribe,首先,然后分别在here_now脚本中运行发布脚本。