合并 System.Threading.Tasks.NET35
智能大石头
authored at
2023-03-16 23:32:48
X
using System.Collections.Generic;
namespace System.Threading.Tasks;
public interface IConcurrentDeque<T>
{
void PushBottom(T obj);
PopResult PopBottom(out T obj);
PopResult PopTop(out T obj);
IEnumerable<T> GetEnumerable();
}
|