Class QueueCursor<E>

    • Constructor Detail

      • QueueCursor

        public QueueCursor​(int capacity)
        Deprecated.
        Creates an QueueCursor with the given (fixed) capacity and default access policy.
        Parameters:
        capacity - the capacity of this queue
      • QueueCursor

        public QueueCursor​(int capacity,
                           boolean fair)
        Deprecated.
        Creates an QueueCursor with the given (fixed) capacity and the specified access policy.
        Parameters:
        capacity - the capacity of this queue
        fair - if true then queue accesses for threads blocked on insertion or removal, are processed in FIFO order; if false the access order is unspecified.