Class BaseConcurrentStack<T>
Represents a thread-safe, last-in-first-out (LIFO) collection of objects. This class extends ConcurrentStack<T> to provide additional functionality or customization.
public class BaseConcurrentStack<T> : ConcurrentStack<T>, IProducerConsumerCollection<T>, ICollection, IReadOnlyCollection<T>, IEnumerable<T>, IEnumerable
Type Parameters
T
The type of elements in the stack.
- Inheritance
-
BaseConcurrentStack<T>
- Implements
-
IEnumerable<T>