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.
つまり、キューが保持できるトークン/要素の数を制限するにはどうすればよいですか?
例:
一度に 1 つの要求しか処理できない低レベルのドライバーがあります。
Ace アクティベーション キューを使用してリクエストを制限しています (最大 10 個の保留中の可能性があります) が、バスに乗ることができるのは 1 つだけです。残りは最初のリクエストが終了するまで待たなければなりません。
助けてくれてありがとう。
ドロン。
つまり:
an_activation_queue.queue()->high_water_mark(new_size);
?