Adds a generic queue and string/byte implementations. Also adds a class that processes string responses from a IBasicCommunication or Gather

This commit is contained in:
Nick Genovese
2020-08-31 15:34:12 -04:00
parent 6194948259
commit fdae50a972
8 changed files with 422 additions and 9 deletions

View File

@@ -0,0 +1,15 @@
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; }
}
}