-
Notifications
You must be signed in to change notification settings - Fork 10
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
Have servers report RunRouters #271
Comments
attn: @danielballan I think this would give very plug and play friendly (no ZMQ) versions of the servers |
Cool. At this point I don't have quite enough context to know what "report" means. I have to spend some time with the docs. |
Report = return |
Note that this means that the creation of a server could be a decorator. def make_server(rr_factory, prefix, inbound_proxy_addr, outbound_proxy_addr, ...):
publisher = Publisher(...)
def inner():
rr = rr_factory(publisher=publisher)
rd = RemoteDispatcher(outbound_proxy_addr, prefix=prefix)
rd.subscribe(rr)
rd.start()
return inner |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It would be good to have the starting of the server and the provisioning of the run router be separate steps.
The text was updated successfully, but these errors were encountered: