class Blather::Stream

Public Instance Methods

unbind() click to toggle source
# File lib/omf_common/comm/xmpp/communicator.rb, line 30
def unbind
  cleanup
  raise NoConnection unless @inited
  @state = :stopped
  @client.receive_data @error if @error
  @client.unbind
end