Internal concurrency queue system for Conduit.
Handles:
This queue ensures that operations targeting the same thread are executed sequentially, while also adding randomized delays to simulate natural interaction timing and reduce API abuse risk.
Enqueues a job for a specific thread.
Jobs are executed in FIFO order per thread.
Target thread for execution
Async function representing the operation
Promise resolving with the job result
If the queue is not currently running for the thread, execution starts automatically.
Internal concurrency queue system for Conduit.
Handles:
Remarks
This queue ensures that operations targeting the same thread are executed sequentially, while also adding randomized delays to simulate natural interaction timing and reduce API abuse risk.