Files
skynet/test/testping.lua
2014-04-16 23:23:51 +08:00

14 lines
313 B
Lua

local skynet = require "skynet"
local snax = require "snax"
skynet.start(function()
local ps = snax.newservice ("pingserver", "hello world")
print(ps.pub.hello())
print(ps.req.ping("foobar"))
print(pcall(ps.req.error))
snax.hotfix(ps)
print(ps.pub.hello())
print(snax.kill(ps,"exit"))
skynet.exit()
end)