I am working on a service which consumes SSE from the Validic Inform platform to handle wearable device data, and process it for our other various services. Currently there is a complex solution in order to handle this data, and I want to try and simplify it.
I have looked at SignalR, but it seems to not actually support consumption of other sources, even if its through SSE protocol which is supported. It is dependent on being able to call a hub, which we do not have. We want to directly talk to Inform.
I have also looked at ServiceStack...but it seems they want to charge you for what ought to be a simple library.
Are there any better ways to consume SSE within a ASP.NET API / Azure functions without rolling your own code with a HttpClient?