mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-27 19:34:51 +00:00
12 lines
232 B
C#
12 lines
232 B
C#
using System;
|
|
using PepperDash.Core;
|
|
|
|
namespace PepperDash.Essentials.Core.Queues
|
|
{
|
|
public interface IQueue<T> : IKeyed, IDisposable where T : class
|
|
{
|
|
void Enqueue(T item);
|
|
bool Disposed { get; }
|
|
}
|
|
}
|