-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
autobahn wamp call works in onJoin but not in button event #58
Comments
Sorry, this notification got lost in my pile. Maybe a side note, maybe not... but I would tend to recommend away from multiple inheritance like this. Seems like a lot of stuff getting mixed together. I can't say I have any familiarity with crossbar.io beyond having heard of it. Hopefully you have gotten some help from elsewhere by now, or solved this yourself. If not, could you share the full output error? Might help me understand which side of things the issue lies on. |
Thanks for the comment. There is very little documentation on how to do
it, and this is done like the only demo I could find.
…On Wed, May 19, 2021 at 2:57 PM Kyle Altendorf ***@***.***> wrote:
Sorry, this notification got lost in my pile. :[
Maybe a side note, maybe not... but I would tend to recommend away from
multiple inheritance like this. Seems like a lot of stuff getting mixed
together.
I can't say I have any familiarity with crossbar.io beyond having heard
of it. Hopefully you have gotten some help from elsewhere by now, or solved
this yourself. If not, could you share the full output error? Might help me
understand which side of things the issue lies on.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#58 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AQOQRRJZRZXYAD2AO45NPCDTOP3XNANCNFSM43MOMIKQ>
.
|
I would also not do multiple inheritance like that. You're actually instantiating The This is off the top of my head here, but approximately what you'll want is:
You'll likely want to disable the "chat" button when the WAMP connection isn't active. Some pseudo-code:
|
Hi, I am attempting to use qt5reactor in order to do crossbar.io wamp calls from a pyqt5 application. I have it working to the point that I can do a wamp call from the onJoin callback but when I try to put the call in a button event I get an immediate 'TransportLost' exception and the call does not go through.
In the code below, the call in the onJoin callback works but the call in the message_to callback (from a button) does not.
The text was updated successfully, but these errors were encountered: