this question seems to be noob but i've been searching in Google, also in this forum and I couldn't find exactly what i'm looking for.
I have a SonimMQ object in the Controller in listening mode, so when I receive one or many messages, I parse them and want to send them to my View (could be a Grid or a Chart for a real time update). Is there a way to send data from a Controller Event (in this case is the _OnReceiveData SonicMQ Event) to a View without the client request?
I know I could implement a Timer with jQuery (setTimeout) for pulling data from the Controller but I just want to know if there's another way to implement this.
I've also read about jQuery .Controller but it seems it works only with mouse and keyboard events, not with "Controller events".
The closest answer i've found here is this one but it uses jQuery setTimeout.
Perhaps it's a paradigm problem because i'm a desktop application developer and i'm trying to solve this as in desktop app model. I'm just beginning with web development. So, please excuse me if this question is so obvious.
I appreciate any help. Thanks!