Add my stream parser to utils, simple probably could use some work.

This commit is contained in:
KimLS
2024-10-16 23:04:10 -07:00
parent ae198ae043
commit 534de0c414
14 changed files with 1834 additions and 0 deletions
@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StreamParser.Common.Daybreak
{
public interface IParser
{
delegate void ConnectionHandler(IConnection connection, DateTime connectionTime);
ConnectionHandler OnNewConnection { get; set; }
ConnectionHandler OnLostConnection { get; set; }
void Parse(string filename);
}
}