Class: WebSocket::EventMachine::Client
- Inherits:
-
Base
- Object
- Base
- WebSocket::EventMachine::Client
- Defined in:
- lib/websocket/eventmachine/client.rb,
lib/websocket/eventmachine/client/version.rb
Overview
WebSocket Client (using EventMachine)
Constant Summary collapse
- VERSION =
'1.2.0'
Class Method Summary collapse
-
.connect(args = {}) ⇒ Object
Connect to websocket server.
-
.connect_unix_domain(socketname, args = {}) ⇒ Object
Make a websocket connection to a UNIX-domain socket.
Instance Method Summary collapse
-
#close(code = 1000, data = nil) ⇒ Boolean
Close connection.
-
#connection_completed ⇒ Object
Called by EventMachine after connecting.
-
#initialize(args) ⇒ Client
constructor
Initialize connection.
-
#onclose(&blk) ⇒ Object
Called when connection is closed.
-
#onerror(&blk) ⇒ Object
Called when error occurs.
-
#onmessage(&blk) ⇒ Object
Called when message is received.
-
#onopen(&blk) ⇒ Object
Called when connection is opened.
-
#onping(&blk) ⇒ Object
Called when ping message is received One parameter passed to block: message - string with ping message.
-
#onpong(&blk) ⇒ Object
Called when pong message is received One parameter passed to block: message - string with pong message.
-
#ping(data = '') ⇒ Boolean
Send ping message.
-
#pong(data = '') ⇒ Boolean
Send pong message.
-
#post_init ⇒ Object
Called after initialize of connection, but before connecting to server Eventmachine internal.
-
#send(data, args = {}) ⇒ Boolean
Send data.
-
#ssl_handshake_completed ⇒ Object
Called by EventMachine after SSL/TLS handshake.
Constructor Details
#initialize(args) ⇒ Client
Initialize connection
64 65 66 |
# File 'lib/websocket/eventmachine/client.rb', line 64 def initialize(args) @args = args end |
Class Method Details
.connect(args = {}) ⇒ Object
Connect to websocket server
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/websocket/eventmachine/client.rb', line 26 def self.connect(args = {}) host = nil port = nil if args[:uri] uri = URI.parse(args[:uri]) host = uri.host port = uri.port args[:ssl] = true if uri.scheme == 'wss' end host = args[:host] if args[:host] port = args[:port] if args[:port] if args[:ssl] port ||= 443 else port ||= 80 end ::EventMachine.connect host, port, self, args end |
.connect_unix_domain(socketname, args = {}) ⇒ Object
Make a websocket connection to a UNIX-domain socket.
51 52 53 54 55 |
# File 'lib/websocket/eventmachine/client.rb', line 51 def self.connect_unix_domain(socketname, args = {}) fail ArgumentError, 'invalid socket' unless File.socket?(socketname) args[:host] ||= 'localhost' ::EventMachine.connect_unix_domain socketname, self, args end |
Instance Method Details
#close(code = 1000, data = nil) ⇒ Boolean
Close connection
155 |
# File 'lib/websocket/eventmachine/client.rb', line 155 def close(code = 1000, data = nil); super; end |
#connection_completed ⇒ Object
Called by EventMachine after connecting. Sends handshake to server or starts SSL/TLS Eventmachine internal
84 85 86 87 88 89 90 |
# File 'lib/websocket/eventmachine/client.rb', line 84 def connection_completed if @args[:ssl] start_tls else send(@handshake.to_s, :type => :plain) end end |
#onclose(&blk) ⇒ Object
Called when connection is closed. No parameters are passed to block
122 |
# File 'lib/websocket/eventmachine/client.rb', line 122 def onclose(&blk); super; end |
#onerror(&blk) ⇒ Object
Called when error occurs. One parameter passed to block:
error - string with error message
127 |
# File 'lib/websocket/eventmachine/client.rb', line 127 def onerror(&blk); super; end |
#onmessage(&blk) ⇒ Object
Called when message is received. Two parameters passed to block:
message - string with received message
type - type of message. Valid values are :text and :binary
133 |
# File 'lib/websocket/eventmachine/client.rb', line 133 def (&blk); super; end |
#onopen(&blk) ⇒ Object
Called when connection is opened. No parameters are passed to block
118 |
# File 'lib/websocket/eventmachine/client.rb', line 118 def onopen(&blk); super; end |
#onping(&blk) ⇒ Object
Called when ping message is received One parameter passed to block:
message - string with ping message
138 |
# File 'lib/websocket/eventmachine/client.rb', line 138 def onping(&blk); super; end |
#onpong(&blk) ⇒ Object
Called when pong message is received One parameter passed to block:
message - string with pong message
143 |
# File 'lib/websocket/eventmachine/client.rb', line 143 def onpong(&blk); super; end |
#ping(data = '') ⇒ Boolean
Send ping message
159 |
# File 'lib/websocket/eventmachine/client.rb', line 159 def ping(data = ''); super; end |
#pong(data = '') ⇒ Boolean
Send pong message
163 |
# File 'lib/websocket/eventmachine/client.rb', line 163 def pong(data = ''); super; end |
#post_init ⇒ Object
Called after initialize of connection, but before connecting to server Eventmachine internal
75 76 77 78 |
# File 'lib/websocket/eventmachine/client.rb', line 75 def post_init @state = :connecting @handshake = ::WebSocket::Handshake::Client.new(@args) end |
#send(data, args = {}) ⇒ Boolean
Send data
151 |
# File 'lib/websocket/eventmachine/client.rb', line 151 def send(data, args = {}); super; end |
#ssl_handshake_completed ⇒ Object
Called by EventMachine after SSL/TLS handshake. Sends websocket handshake Eventmachine internal
96 97 98 |
# File 'lib/websocket/eventmachine/client.rb', line 96 def ssl_handshake_completed send(@handshake.to_s, :type => :plain) end |