Method: Jabber::Stream#send_data

Defined in:
lib/vendor/xmpp4r/lib/xmpp4r/stream.rb

#send_data(data) ⇒ Object



288
289
290
291
292
293
294
# File 'lib/vendor/xmpp4r/lib/xmpp4r/stream.rb', line 288

def send_data(data)
  @send_lock.synchronize do
    @last_send = Time.now
    @fd << data
    @fd.flush
  end
end