-
Notifications
You must be signed in to change notification settings - Fork 0
Home
ax-jason edited this page Oct 21, 2016
·
2 revisions
All pure lua mods here.
A pure lua protocal library based on string.pack/string.unpack feature of Lua5.3. See the ax_proto.lua for more details and examples.
A key/value table that guarantees traversal of element order predictability during traversal, also provides a safe operation of removing elements while traversing. See the mpa.lua for more details and examples.
A coroutine pool system. Use it as a common coroutine system except it use a internal pool to reuse idle threads. See the crt.lua for more details and examples.
A simple timer system which will trigger events on time. See the timer.lua for more details and examples.