jcurl / RJCP.DLL.SerialPortStream

SerialPortStream is an independent implementation of System.IO.Ports.SerialPort and SerialStream for better reliability and maintainability. Default branch is 2.x and now has support for Mono with help of a C library.
Microsoft Public License
624 stars 197 forks source link

Implement System.IO.Pipelines #65

Closed tedvanderveen closed 6 years ago

tedvanderveen commented 6 years ago

Looks like the recently added System.IO.Pipelines namespace is a very good fit for serial port I/O processes. Are you planning on deploying it for this project? https://blogs.msdn.microsoft.com/dotnet/2018/07/09/system-io-pipelines-high-performance-io-in-net/ https://www.nuget.org/packages/System.IO.Pipelines/ The Package has support for .NetStardard 1.3+ / .Net 4.6+ / .Net Core 2.0+

jcurl commented 6 years ago

At this time, I'm not planning to use System.IO.Pipelines. I still need the software to target .NET 4.0 and pipelines would be a refactoring that I don't have time for at the moment.