Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/async/queue.ts>Queue#full

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

Return true if there are maxsize items in the queue. If the queue was initialized with maxsize=0 (the default), then full() never returns true.

Returns

boolean