class Blather::Client

Public Instance Methods

unbind() click to toggle source
# File lib/gxg/net_clients.rb, line 37
def unbind
    # Fix bug where closing connection stops EM for ALL Client Instances.
    # call_handler_for(:disconnected, nil) || (EM.reactor_running? && EM.stop)
    call_handler_for(:disconnected, nil)
    true
end