Wisej real-time data stream

0
0

Is there a way to perform the operations I want to do on all clients in real-time without using SignalR, or how should I integrate SignalR? I’m getting a .NET 4.8 incompatibility error. Thank you in advance for your help.

  • You must to post comments
1
0

Sure. Create a static manager class, fire a static event when the data needs to be updated. The clients simply attach to the static event. When fired they will all be invoked since events are multicast.

When handling the event make sure to use Apolicatio.Update() or RunInContext. You will find more info in the docs.

  • Hüseyin Tunç
    Thank you, Luca, my problem is solved.
  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.