如何在线保存Jabber bot的状态?

时间:2011-06-15 19:25:53

标签: ruby xmpp

这是我的代码:

require 'xmpp4r/client'

jid = Jabber::JID::new('some.other@gmail.com/Home')
cl = Jabber::Client::new(jid)
cl.connect
cl.auth('pass')

cl.send(Jabber::Presence.new.set_show(:chat).set_status('my_status'))
#cl.send Jabber::Presence::new

salutation = Jabber::Message::new( 'here.again@gmail.com', '' )
salutation.set_type(:chat).set_id('1')
cl.send salutation

while 1
end

但是当我关闭聊天窗口时,jabber-bot会离线。我怎样才能保持在线状态?

0 个答案:

没有答案