Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
也就是说,我如何限制 Queue 可以容纳的令牌/元素的数量?
例子:
我有一个低级驱动程序,一次只能处理一个请求。
我正在使用 Ace 激活队列来限制请求(最多可能有 10 个待处理),但只允许一个上车。其余的必须等到第一个请求结束。
谢谢你的协助。
多伦。
你的意思是:
an_activation_queue.queue()->high_water_mark(new_size);
?