mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-23 17:34:47 +00:00
15 lines
330 B
C#
15 lines
330 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
using PepperDash.Core;
|
|
|
|
namespace PepperDash_Essentials_Core.Queues
|
|
{
|
|
public interface IQueue<T> : IKeyed, IDisposable where T : class
|
|
{
|
|
void Enqueue(T item);
|
|
bool Disposed { get; }
|
|
}
|
|
} |