Is there any way to get the Channel ID on the server or transmit it inside a RequestFactory call?
Situation:
- User starts the application, a channel is being opened.
- User persists an entity with RequestFactory (
requests.persist().using(...).fire(...)
). - The
persist()
method on the server pings all connected clients to tell them that the entity has been updated.
But the user that made the initial change doesn't have to be pinged. Is there a way to find out which client made the change? It's not enough to know the user, because one user may have opened several windows (channels).