I'm using Here Tour Plannig API, that API has two ways to send a request: Synchronous and Asynchronous. The Asynchronous way is to do a huge request, and I want to implemet it but using SignalR because Here only returns you a response where you have a status' request and you have to do another GET to know if the status is success.
So, the idea behind SignalR is to send a notification to my client when the status is success, but to achieve that, I have to send multiples requests to know the status' plannig, and that my idea is to do those requests in a Hub SignalR method. Is that ok? There is another library? (I'm using .Net 5)