Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/async/queue.ts>Queue#put_nowait

🦕 Asynchronous primitive modules loosely port from Python's asyncio for Deno.
Go to Latest
method Queue.prototype.put_nowait
import { Queue } from "https://deno.land/x/async@v1.1.2/queue.ts";

Put an item into the queue without blocking. If no free slot is immediately available, throw a QueueFull error.

Parameters

value: T