-
Notifications
You must be signed in to change notification settings - Fork 7
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
Issues with sierra component integration #6
Comments
Hi, thanks for the report! |
@drapanjanas could potentially be that the websocket's Thanks for taking a look. |
@cjsauer yes I think this happens because of async (def tube (tubes/create "ws://localhost:9090/ws" on-recv))
(dispatch tube [:my-event])
(tubes/destroy tube)) Not sure about old code, but might still be working. |
Hello,
First, thanks for this library. It's an awesome accomplishment.
I'm having some issues with wrapping tubes into a Sierra component (https://github.com/stuartsierra/component)
Mainly, from reading the code, it doesn't seem like support for
(tubes/create! t)
, followed by(tubes/destroy! t)
, followed by another call to(tubes/create! t)
is a supported operation. I'm noticing that the tube is still marked as:destroyed true
even after I re-create it.What is your suggestion for stopping and then starting a tube? Thanks!
The text was updated successfully, but these errors were encountered: