摘要: 摘自:http.lua 阅读全文
posted @ 2017-11-22 18:04 马贡多在下雨 阅读(444) 评论(0) 推荐(0)
摘要: 参考:Lua中的协同程序 coroutine http.lua 协同程序(Coroutine): 三个状态:suspended(挂起,协同刚创建完成时或者yield之后)、running(运行)、dead(函数走完后的状态,这时候不能再重新resume)。 coroutine.create(arg) 阅读全文
posted @ 2017-11-22 17:33 马贡多在下雨 阅读(430) 评论(0) 推荐(0)