module NemWebsocketClient

Constants

VERSION

Public Class Methods

connect(url, port) click to toggle source
# File lib/nem_websocket_client/client.rb, line 3
def self.connect(url, port)
  client = ::NemWebsocketClient::Client.new(url,port)
  client.connect
  return client
end