You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System.Collections.Concurrent;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace ZeroLevel.Services.Async
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Represents a thread-safe stack that allows asynchronous consuming.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <typeparam name="T">The type of the items contained in the stack.</typeparam>
|
|
|
|
|
public class AsyncStack<T>
|
|
|
|
|
: AsyncCollection<T>
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new empty instance of <see cref="AsyncStack{T}"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public AsyncStack() : base(new ConcurrentStack<T>()) { }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of <see cref="AsyncStack{T}"/> that contains elements copied from a specified collection.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="collection">The collection whose elements are copied to the new stack.</param>
|
|
|
|
|
public AsyncStack(IEnumerable<T> collection) : base(new ConcurrentStack<T>(collection)) { }
|
|
|
|
|
}
|
|
|
|
|
}
|