-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathws_client.lua
41 lines (32 loc) · 880 Bytes
/
ws_client.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
local wsc = require "websocket.wsc"
local ws_client = {}
local function connect()
ws_client.ws = wsc()
ws_client.ws:on_connected(function ()
print("ws connect is suss")
ws_client.ws:send("hello world ")
end)
local num = 1
ws_client.ws:on_message(function(message, opcode)
print("Receiving opcode:", opcode, "message:", inspect(message))
ws_client.ws:send("hello world " .. num)
num = num + 1
end)
local url = "wss://echo.websocket.org"
print("Connecting to " .. url)
return ws_client.ws:connect(url)
end
local function loop()
ws_client.ws:loop()
end
local function shutdown()
if ws_client.ws then
ws_client.ws:close()
ws_client.ws = nil
end
end
return {
connect = connect,
loop = loop,
shutdown = shutdown,
}