RadzenChat in WebAssembly?

Looking at the code for the new Chat component (which looks very useful btw), I’m wondering, does this work in a WebAssembly scenario, or only in a Server scenario?

Our demos are WebAssembly.

Point is, because WebAssembly runs inside a user’s browser, how can it communicate with other users who run in another browser? I had expected to see the use of SignalR, for example, but this is not the case.

Given the implementation of keeping the messages inside the component it seems impossible to communicate with another user under the WebAssembly model - unless I missed something.

Note that I did not try out the component yet, I was merely looking at the code.

Thanks to enlighten me, and your usual quick feedback is much appreciated!

Hi @rudolfdeschipper,

RadzenChat doesn't provide a complete out-of-the box multi-way chat implementation. It is a UI component capable of displaying chat messages. The developer is responsible for implementing the actual communication between users - either via some rest API or SignalR socket.

Thanks for the clarification, appreciated.