Class ChangelogKeyGroupedPriorityQueue<T>

    • Method Detail

      • poll

        @Nullable
        public T poll()
        Description copied from interface: InternalPriorityQueue
        Retrieves and removes the first element (w.r.t. the order) of this set, or returns null if this set is empty.

        NOTE: Correct key (i.e. the key of the polled element) must be set on KeyContext before calling this method.

        Specified by:
        poll in interface InternalPriorityQueue<T>
        Returns:
        the first element of this ordered set, or null if this set is empty.
      • peek

        @Nullable
        public T peek()
        Description copied from interface: InternalPriorityQueue
        Retrieves, but does not remove, the element (w.r.t. order) of this set, or returns null if this set is empty.
        Specified by:
        peek in interface InternalPriorityQueue<T>
        Returns:
        the first element (w.r.t. order) of this ordered set, or null if this set is empty.
      • add

        public boolean add​(T toAdd)
        Description copied from interface: InternalPriorityQueue
        Adds the given element to the set, if it is not already contained.
        Specified by:
        add in interface InternalPriorityQueue<T>
        Parameters:
        toAdd - the element to add to the set.
        Returns:
        true if the operation changed the head element or if it is unclear if the head element changed. Only returns false if the head element was not changed by this operation.
      • remove

        public boolean remove​(T toRemove)
        Description copied from interface: InternalPriorityQueue
        Removes the given element from the set, if is contained in the set.

        NOTE: Correct key (i.e. the key of the polled element) must be set on KeyContext before calling this method.

        Specified by:
        remove in interface InternalPriorityQueue<T>
        Parameters:
        toRemove - the element to remove.
        Returns:
        true if the operation changed the head element or if it is unclear if the head element changed. Only returns false if the head element was not changed by this operation.
      • isEmpty

        public boolean isEmpty()
        Description copied from interface: InternalPriorityQueue
        Check if the set contains any elements.
        Specified by:
        isEmpty in interface InternalPriorityQueue<T>
        Returns:
        true if the set is empty, i.e. no element is contained.