mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-13 04:26:49 +00:00
added IQueueMessage and two implementations; GenericQueue now accepts type IQueueMessage
This commit is contained in:
parent
4f562e0d8e
commit
b9fff95215
10 changed files with 146 additions and 164 deletions
|
|
@ -7,7 +7,7 @@ using PepperDash.Core;
|
|||
|
||||
namespace PepperDash_Essentials_Core.Queues
|
||||
{
|
||||
public interface IQueue<T> : IKeyed, IDisposable where T : class
|
||||
public interface IQueue<T> : IKeyed, IDisposable where T : class
|
||||
{
|
||||
void Enqueue(T item);
|
||||
bool Disposed { get; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue