ecorm / cppwamp

C++ client library for the WAMP protocol.
Boost Software License 1.0
35 stars 9 forks source link

Add test cases for executing Session operations within call/event slots #44

Closed ecorm closed 9 years ago

ecorm commented 9 years ago

Add test cases for Session operations being executed within call/event slots. For example, verify that a client app can unsubscribe from within a pub/sub event handler.

Event/call slots are always posted to the I/O service; they are never executed with the context of the WAMP message receive handler. So while I doubt there are currently are any issues, it would be good to test for them anyway.