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
Consider making Session objects more thread safe. This might entail that internal::WampMessage objects can no longer be reused in internal::Client, but must be constructed every time a message needs to be sent.
The text was updated successfully, but these errors were encountered:
Now that serializer/deserializer instances are reused within the same Session, making its existing operations reentrant is impossible without posting everything to Session's strand.
A set thread-safe methods (or overloads) will be added to Session which post everything to Session's strand. That way, single-threaded apps can continue using the existing API without the post penalty.
Consider making
Session
objects more thread safe. This might entail thatinternal::WampMessage
objects can no longer be reused ininternal::Client
, but must be constructed every time a message needs to be sent.The text was updated successfully, but these errors were encountered: