Class BytePriorityQueues.SynchronizedPriorityQueue

java.lang.Object
it.unimi.dsi.fastutil.bytes.BytePriorityQueues.SynchronizedPriorityQueue
All Implemented Interfaces:
BytePriorityQueue, PriorityQueue<Byte>
Enclosing class:
BytePriorityQueues

public static class BytePriorityQueues.SynchronizedPriorityQueue
extends Object
implements BytePriorityQueue
A synchronized wrapper class for priority queues.
  • Method Summary

    Modifier and Type Method Description
    void changed()
    Notifies the queue that the first element has changed (optional operation).
    void clear()
    Removes all elements from this queue.
    ByteComparator comparator()
    Returns the comparator associated with this priority queue, or null if it uses its elements' natural ordering.
    Byte dequeue()
    Deprecated.
    byte dequeueByte()
    Dequeues the first element from the queue.
    void enqueue​(byte x)
    Enqueues a new element.
    void enqueue​(Byte x)
    Deprecated.
    boolean equals​(Object o)  
    Byte first()
    Deprecated.
    byte firstByte()
    Returns the first element of the queue.
    int hashCode()  
    boolean isEmpty()
    Checks whether this queue is empty.
    Byte last()
    Deprecated.
    byte lastByte()
    Returns the last element of the queue, that is, the element the would be dequeued last (optional operation).
    int size()
    Returns the number of elements in this queue.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, toString, wait, wait, wait