Ada Programming/Libraries/Ada.Containers.Bounded_Synchronized_Queues
Appearance
This language feature has been introduced in Ada 2012.
Ada.Containers.Bounded_Synchronized_Queues is a unit of the Predefined Language Environment since Ada 2012.
Specification
[edit | edit source]-- Standard Ada library specification -- Copyright (c) 2004-2016 AXE Consultants -- Copyright (c) 2004, 2005, 2006 Ada-Europe -- Copyright (c) 2000 The MITRE Corporation, Inc. -- Copyright (c) 1992, 1993, 1994, 1995 Intermetrics, Inc. -- SPDX-License-Identifier: BSD-3-Clause and LicenseRef-AdaReferenceManual -- -------------------------------------------------------------------------with
System;with
Ada.Containers.Synchronized_Queue_Interfaces;generic
with
package
Queue_Interfacesis
new
Ada.Containers.Synchronized_Queue_Interfaces (<>); Default_Capacity : Count_Type; Default_Ceiling : System.Any_Priority := System.Priority'Last;package
Ada.Containers.Bounded_Synchronized_Queuesis
pragma
Preelaborate(Bounded_Synchronized_Queues);package
Implementationis
-- not specified by the languageend
Implementation;protected
type
Queue (Capacity : Count_Type := Default_Capacity; Ceiling : System.Any_Priority := Default_Ceiling)with
Priority => Ceilingis
new
Queue_Interfaces.Queuewith
overriding
entry
Enqueue (New_Item :in
Queue_Interfaces.Element_Type);overriding
entry
Dequeue (Element :out
Queue_Interfaces.Element_Type);overriding
function
Current_Usereturn
Count_Type;overriding
function
Peak_Usereturn
Count_Type;private
-- not specified by the languageend
Queue;private
-- not specified by the languageend
Ada.Containers.Bounded_Synchronized_Queues;
See also
[edit | edit source]Wikibook
[edit | edit source]External examples
[edit source]- Search for examples of
Ada.Containers.Bounded_Synchronized_Queues
in: Rosetta Code, GitHub (gists), any Alire crate or this Wikibook. - Search for posts related to
Ada.Containers.Bounded_Synchronized_Queues
in: Stack Overflow, comp.lang.ada or any Ada related page.
Ada Reference Manual
[edit | edit source]Ada 2012
[edit | edit source]Open-Source Implementations
[edit | edit source]FSF GNAT
- Specification: a-cbsyqu.ads
- Body: a-cbsyqu.adb