blob: a456fed10a4e4d673460d65a09b8d5950b49db3b [file] [log] [blame]
using System.Threading;
using System.Threading.Tasks;
namespace DotPulsar.Internal.Abstractions
{
public interface IDequeue<T>
{
Task<T> Dequeue(CancellationToken cancellationToken = default);
}
}