Presence,PubNub + Ruby

时间:2012-10-01 17:30:53

标签: ruby-on-rails-3 pubnub

我正在尝试使用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
})

1 个答案:

答案 0 :(得分:0)

对于使用您提供的内容进行非常简单的测试,您将需要在一个ruby脚本中运行subscribe,首先,然后分别在here_now脚本中运行发布脚本。