You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am creating a HTMX SSE based website where I want to send the same event to all the clients, so I want to just render that event into a ByteBuffer once and then pass a copy of that buffer to all the ResponseBodyWriter instances. Currently I'm rendering into a string and then writing that into the buffer which works fine, just copies the data more than necessary.