-
Notifications
You must be signed in to change notification settings - Fork 255
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
refactor(rumqttd): let Broker derive Clone and remove start mut self #700
base: main
Are you sure you want to change the base?
Conversation
Hey, I'm curious how does this PR solves the mentioned discussion? can you elaborate more on this 😅 |
With the current implementation, we are moving a By removing mut self on Or since both |
while sharing would be possible, it would also allow Can you share why do you want to share the broker to another thread? |
You are right this could be an issue. Mu use case is that I want to link and subscribe to dynamic topics that are created after broker starts. |
You can create link using So you might not need whole |
Yes that'll do. I've read this but the |
Good catch, i somehow managed to miss this detail 😬😅 |
545d249
to
235a5d4
Compare
fixes #699