/** * @since 2.0.0 */ import type * as Chunk from "./Chunk.js"; import type * as Deferred from "./Deferred.js"; import type * as Effect from "./Effect.js"; import type * as MutableQueue from "./MutableQueue.js"; import type * as MutableRef from "./MutableRef.js"; import type * as Option from "./Option.js"; import type { Pipeable } from "./Pipeable.js"; import type * as Types from "./Types.js"; import type * as Unify from "./Unify.js"; /** * @since 2.0.0 * @category symbols */ export declare const EnqueueTypeId: unique symbol; /** * @since 2.0.0 * @category symbols */ export type EnqueueTypeId = typeof EnqueueTypeId; /** * @since 2.0.0 * @category symbols */ export declare const DequeueTypeId: unique symbol; /** * @since 2.0.0 * @category symbols */ export type DequeueTypeId = typeof DequeueTypeId; /** * @since 2.0.0 * @category symbols */ export declare const QueueStrategyTypeId: unique symbol; /** * @since 2.0.0 * @category symbols */ export type QueueStrategyTypeId = typeof QueueStrategyTypeId; /** * @since 2.0.0 * @category symbols */ export declare const BackingQueueTypeId: unique symbol; /** * @since 2.0.0 * @category symbols */ export type BackingQueueTypeId = typeof BackingQueueTypeId; /** * @since 2.0.0 * @category models */ export interface Queue extends Enqueue, Dequeue { readonly [Unify.typeSymbol]?: unknown; readonly [Unify.unifySymbol]?: QueueUnify; readonly [Unify.ignoreSymbol]?: QueueUnifyIgnore; } /** * @category models * @since 3.8.0 */ export interface QueueUnify extends DequeueUnify { Queue?: () => Extract>; } /** * @category models * @since 3.8.0 */ export interface QueueUnifyIgnore extends DequeueUnifyIgnore { Dequeue?: true; } /** * @since 2.0.0 * @category models */ export interface Enqueue extends Queue.EnqueueVariance, BaseQueue, Pipeable { /** * Places one value in the queue. */ offer(value: A): Effect.Effect; /** * Places one value in the queue when possible without needing the fiber runtime. */ unsafeOffer(value: A): boolean; /** * For Bounded Queue: uses the `BackPressure` Strategy, places the values in * the queue and always returns true. If the queue has reached capacity, then * the fiber performing the `offerAll` will be suspended until there is room * in the queue. * * For Unbounded Queue: Places all values in the queue and returns true. * * For Sliding Queue: uses `Sliding` Strategy If there is room in the queue, * it places the values otherwise it removes the old elements and enqueues the * new ones. Always returns true. * * For Dropping Queue: uses `Dropping` Strategy, It places the values in the * queue but if there is no room it will not enqueue them and return false. */ offerAll(iterable: Iterable): Effect.Effect; } /** * @since 2.0.0 * @category models */ export interface Dequeue extends Effect.Effect, Queue.DequeueVariance, BaseQueue { /** * Takes the oldest value in the queue. If the queue is empty, this will return * a computation that resumes when an item has been added to the queue. */ readonly take: Effect.Effect; /** * Takes all the values in the queue and returns the values. If the queue is * empty returns an empty collection. */ readonly takeAll: Effect.Effect>; /** * Takes up to max number of values from the queue. */ takeUpTo(max: number): Effect.Effect>; /** * Takes a number of elements from the queue between the specified minimum and * maximum. If there are fewer than the minimum number of elements available, * suspends until at least the minimum number of elements have been collected. */ takeBetween(min: number, max: number): Effect.Effect>; readonly [Unify.typeSymbol]?: unknown; readonly [Unify.unifySymbol]?: DequeueUnify; readonly [Unify.ignoreSymbol]?: DequeueUnifyIgnore; } /** * @category models * @since 3.8.0 */ export interface DequeueUnify extends Effect.EffectUnify { Dequeue?: () => A[Unify.typeSymbol] extends Dequeue | infer _ ? Dequeue : never; } /** * @category models * @since 3.8.0 */ export interface DequeueUnifyIgnore extends Effect.EffectUnifyIgnore { Effect?: true; } /** * The base interface that all `Queue`s must implement. * * @since 2.0.0 * @category models */ export interface BaseQueue { /** * Returns the number of elements the queue can hold. */ capacity(): number; /** * Returns false if shutdown has been called. */ isActive(): boolean; /** * Retrieves the size of the queue, which is equal to the number of elements * in the queue. This may be negative if fibers are suspended waiting for * elements to be added to the queue. */ readonly size: Effect.Effect; /** * Retrieves the size of the queue, which is equal to the number of elements * in the queue. This may be negative if fibers are suspended waiting for * elements to be added to the queue. Returns None if shutdown has been called */ unsafeSize(): Option.Option; /** * Returns `true` if the `Queue` contains at least one element, `false` * otherwise. */ readonly isFull: Effect.Effect; /** * Returns `true` if the `Queue` contains zero elements, `false` otherwise. */ readonly isEmpty: Effect.Effect; /** * Interrupts any fibers that are suspended on `offer` or `take`. Future calls * to `offer*` and `take*` will be interrupted immediately. */ readonly shutdown: Effect.Effect; /** * Returns `true` if `shutdown` has been called, otherwise returns `false`. */ readonly isShutdown: Effect.Effect; /** * Waits until the queue is shutdown. The `Effect` returned by this method will * not resume until the queue has been shutdown. If the queue is already * shutdown, the `Effect` will resume right away. */ readonly awaitShutdown: Effect.Effect; } /** * @since 2.0.0 * @category models */ export interface Strategy extends Queue.StrategyVariance { /** * Returns the number of surplus values that were unable to be added to the * `Queue` */ surplusSize(): number; /** * Determines how the `Queue.Strategy` should shut down when the `Queue` is * shut down. */ readonly shutdown: Effect.Effect; /** * Determines the behavior of the `Queue.Strategy` when there are surplus * values that could not be added to the `Queue` following an `offer` * operation. */ handleSurplus(iterable: Iterable, queue: BackingQueue, takers: MutableQueue.MutableQueue>, isShutdown: MutableRef.MutableRef): Effect.Effect; /** * It is called when the backing queue is empty but there are some * takers that can be completed */ onCompleteTakersWithEmptyQueue(takers: MutableQueue.MutableQueue>): void; /** * Determines the behavior of the `Queue.Strategy` when the `Queue` has empty * slots following a `take` operation. */ unsafeOnQueueEmptySpace(queue: BackingQueue, takers: MutableQueue.MutableQueue>): void; } /** * @since 2.0.0 * @category models */ export interface BackingQueue extends Queue.BackingQueueVariance { /** * Dequeues an element from the queue. * Returns either an element from the queue, or the `def` param. */ poll(def: Def): A | Def; /** * Dequeues up to `limit` elements from the queue. */ pollUpTo(limit: number): Chunk.Chunk; /** * Enqueues a collection of values into the queue. * * Returns a `Chunk` of the values that were **not** able to be enqueued. */ offerAll(elements: Iterable): Chunk.Chunk; /** * Offers an element to the queue. * * Returns whether the enqueue was successful or not. */ offer(element: A): boolean; /** * The **maximum** number of elements that a queue can hold. * * **Note**: unbounded queues can still implement this interface with * `capacity = Infinity`. */ capacity(): number; /** * Returns the number of elements currently in the queue */ length(): number; } /** * @since 2.0.0 */ export declare namespace Queue { /** * @since 2.0.0 * @category models */ interface EnqueueVariance { readonly [EnqueueTypeId]: { readonly _In: Types.Contravariant; }; } /** * @since 2.0.0 * @category models */ interface DequeueVariance { readonly [DequeueTypeId]: { readonly _Out: Types.Covariant; }; } /** * @since 2.0.0 * @category models */ interface StrategyVariance { readonly [QueueStrategyTypeId]: { readonly _A: Types.Invariant; }; } /** * @since 2.0.0 * @category models */ interface BackingQueueVariance { readonly [BackingQueueTypeId]: { readonly _A: Types.Invariant; }; } } /** * Returns `true` if the specified value is a `Queue`, `false` otherwise. * * @since 2.0.0 * @category refinements */ export declare const isQueue: (u: unknown) => u is Queue; /** * Returns `true` if the specified value is a `Dequeue`, `false` otherwise. * * @since 2.0.0 * @category refinements */ export declare const isDequeue: (u: unknown) => u is Dequeue; /** * Returns `true` if the specified value is a `Enqueue`, `false` otherwise. * * @since 2.0.0 * @category refinements */ export declare const isEnqueue: (u: unknown) => u is Enqueue; /** * @since 2.0.0 * @category strategies */ export declare const backPressureStrategy: () => Strategy; /** * @since 2.0.0 * @category strategies */ export declare const droppingStrategy: () => Strategy; /** * @since 2.0.0 * @category strategies */ export declare const slidingStrategy: () => Strategy; /** * @since 2.0.0 * @category constructors */ export declare const make: (queue: BackingQueue, strategy: Strategy) => Effect.Effect>; /** * Makes a new bounded `Queue`. When the capacity of the queue is reached, any * additional calls to `offer` will be suspended until there is more room in * the queue. * * **Note**: When possible use only power of 2 capacities; this will provide * better performance by utilising an optimised version of the underlying * `RingBuffer`. * * @since 2.0.0 * @category constructors */ export declare const bounded: (requestedCapacity: number) => Effect.Effect>; /** * Makes a new bounded `Queue` with the dropping strategy. * * When the capacity of the queue is reached, new elements will be dropped and the * old elements will remain. * * **Note**: When possible use only power of 2 capacities; this will provide * better performance by utilising an optimised version of the underlying * `RingBuffer`. * * @since 2.0.0 * @category constructors */ export declare const dropping: (requestedCapacity: number) => Effect.Effect>; /** * Makes a new bounded `Queue` with the sliding strategy. * * When the capacity of the queue is reached, new elements will be added and the * old elements will be dropped. * * **Note**: When possible use only power of 2 capacities; this will provide * better performance by utilising an optimised version of the underlying * `RingBuffer`. * * @since 2.0.0 * @category constructors */ export declare const sliding: (requestedCapacity: number) => Effect.Effect>; /** * Creates a new unbounded `Queue`. * * @since 2.0.0 * @category constructors */ export declare const unbounded: () => Effect.Effect>; /** * Returns the number of elements the queue can hold. * * @since 2.0.0 * @category getters */ export declare const capacity: (self: Dequeue | Enqueue) => number; /** * Retrieves the size of the queue, which is equal to the number of elements * in the queue. This may be negative if fibers are suspended waiting for * elements to be added to the queue. * * @since 2.0.0 * @category getters */ export declare const size: (self: Dequeue | Enqueue) => Effect.Effect; /** * Returns `true` if the `Queue` contains zero elements, `false` otherwise. * * @since 2.0.0 * @category getters */ export declare const isEmpty: (self: Dequeue | Enqueue) => Effect.Effect; /** * Returns `true` if the `Queue` contains at least one element, `false` * otherwise. * * @since 2.0.0 * @category getters */ export declare const isFull: (self: Dequeue | Enqueue) => Effect.Effect; /** * Returns `true` if `shutdown` has been called, otherwise returns `false`. * * @since 2.0.0 * @category getters */ export declare const isShutdown: (self: Dequeue | Enqueue) => Effect.Effect; /** * Waits until the queue is shutdown. The `Effect` returned by this method will * not resume until the queue has been shutdown. If the queue is already * shutdown, the `Effect` will resume right away. * * @since 2.0.0 * @category utils */ export declare const awaitShutdown: (self: Dequeue | Enqueue) => Effect.Effect; /** * Interrupts any fibers that are suspended on `offer` or `take`. Future calls * to `offer*` and `take*` will be interrupted immediately. * * @since 2.0.0 * @category utils */ export declare const shutdown: (self: Dequeue | Enqueue) => Effect.Effect; /** * Places one value in the queue. * * @since 2.0.0 * @category utils */ export declare const offer: { /** * Places one value in the queue. * * @since 2.0.0 * @category utils */ (value: A): (self: Enqueue) => Effect.Effect; /** * Places one value in the queue. * * @since 2.0.0 * @category utils */ (self: Enqueue, value: A): Effect.Effect; }; /** * Places one value in the queue. * * @since 2.0.0 * @category utils */ export declare const unsafeOffer: { /** * Places one value in the queue. * * @since 2.0.0 * @category utils */ (value: A): (self: Enqueue) => boolean; /** * Places one value in the queue. * * @since 2.0.0 * @category utils */ (self: Enqueue, value: A): boolean; }; /** * For Bounded Queue: uses the `BackPressure` Strategy, places the values in * the queue and always returns true. If the queue has reached capacity, then * the fiber performing the `offerAll` will be suspended until there is room * in the queue. * * For Unbounded Queue: Places all values in the queue and returns true. * * For Sliding Queue: uses `Sliding` Strategy If there is room in the queue, * it places the values otherwise it removes the old elements and enqueues the * new ones. Always returns true. * * For Dropping Queue: uses `Dropping` Strategy, It places the values in the * queue but if there is no room it will not enqueue them and return false. * * @since 2.0.0 * @category utils */ export declare const offerAll: { /** * For Bounded Queue: uses the `BackPressure` Strategy, places the values in * the queue and always returns true. If the queue has reached capacity, then * the fiber performing the `offerAll` will be suspended until there is room * in the queue. * * For Unbounded Queue: Places all values in the queue and returns true. * * For Sliding Queue: uses `Sliding` Strategy If there is room in the queue, * it places the values otherwise it removes the old elements and enqueues the * new ones. Always returns true. * * For Dropping Queue: uses `Dropping` Strategy, It places the values in the * queue but if there is no room it will not enqueue them and return false. * * @since 2.0.0 * @category utils */ (iterable: Iterable): (self: Enqueue) => Effect.Effect; /** * For Bounded Queue: uses the `BackPressure` Strategy, places the values in * the queue and always returns true. If the queue has reached capacity, then * the fiber performing the `offerAll` will be suspended until there is room * in the queue. * * For Unbounded Queue: Places all values in the queue and returns true. * * For Sliding Queue: uses `Sliding` Strategy If there is room in the queue, * it places the values otherwise it removes the old elements and enqueues the * new ones. Always returns true. * * For Dropping Queue: uses `Dropping` Strategy, It places the values in the * queue but if there is no room it will not enqueue them and return false. * * @since 2.0.0 * @category utils */ (self: Enqueue, iterable: Iterable): Effect.Effect; }; /** * Returns the first value in the `Queue` as a `Some`, or `None` if the queue * is empty. * * @since 2.0.0 * @category utils */ export declare const poll: (self: Dequeue) => Effect.Effect>; /** * Takes the oldest value in the queue. If the queue is empty, this will return * a computation that resumes when an item has been added to the queue. * * @since 2.0.0 * @category utils */ export declare const take: (self: Dequeue) => Effect.Effect; /** * Takes all the values in the queue and returns the values. If the queue is * empty returns an empty collection. * * @since 2.0.0 * @category utils */ export declare const takeAll: (self: Dequeue) => Effect.Effect>; /** * Takes up to max number of values from the queue. * * @since 2.0.0 * @category utils */ export declare const takeUpTo: { /** * Takes up to max number of values from the queue. * * @since 2.0.0 * @category utils */ (max: number): (self: Dequeue) => Effect.Effect>; /** * Takes up to max number of values from the queue. * * @since 2.0.0 * @category utils */ (self: Dequeue, max: number): Effect.Effect>; }; /** * Takes a number of elements from the queue between the specified minimum and * maximum. If there are fewer than the minimum number of elements available, * suspends until at least the minimum number of elements have been collected. * * @since 2.0.0 * @category utils */ export declare const takeBetween: { /** * Takes a number of elements from the queue between the specified minimum and * maximum. If there are fewer than the minimum number of elements available, * suspends until at least the minimum number of elements have been collected. * * @since 2.0.0 * @category utils */ (min: number, max: number): (self: Dequeue) => Effect.Effect>; /** * Takes a number of elements from the queue between the specified minimum and * maximum. If there are fewer than the minimum number of elements available, * suspends until at least the minimum number of elements have been collected. * * @since 2.0.0 * @category utils */ (self: Dequeue, min: number, max: number): Effect.Effect>; }; /** * Takes the specified number of elements from the queue. If there are fewer * than the specified number of elements available, it suspends until they * become available. * * @since 2.0.0 * @category utils */ export declare const takeN: { /** * Takes the specified number of elements from the queue. If there are fewer * than the specified number of elements available, it suspends until they * become available. * * @since 2.0.0 * @category utils */ (n: number): (self: Dequeue) => Effect.Effect>; /** * Takes the specified number of elements from the queue. If there are fewer * than the specified number of elements available, it suspends until they * become available. * * @since 2.0.0 * @category utils */ (self: Dequeue, n: number): Effect.Effect>; }; //# sourceMappingURL=Queue.d.ts.map