commit | 86fb22c5572a709500cafe6876d251f0744d0184 | [log] [tgz] |
---|---|---|
author | Aurelien DARRAGON <adarragon@haproxy.com> | Wed May 03 17:03:09 2023 +0200 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Fri May 05 16:28:32 2023 +0200 |
tree | 7c48f24adce794e4152fa7f5c6123cd56770e966 | |
parent | fc4ec0d653f03c8bfcb34795b4f952df39489f68 [diff] |
MINOR: hlua_fcn: add Queue class Adding a new lua class: Queue. This class provides a generic FIFO storage mechanism that may be shared between multiple lua contexts to easily pass data between them, as stock Lua doesn't provide easy methods for passing data between multiple coroutines. New Queue object may be obtained using core.queue() (it works like core.concat() for a concat Class) Lua documentation was updated (including some usage examples)