vert-x3 / vertx-tcp-eventbus-bridge

Apache License 2.0
49 stars 44 forks source link

Any way to get more documentation on how to create a eventbus client without using the jvm #36

Open willisjtc opened 6 years ago

willisjtc commented 6 years ago

Version

Extra

Any extra documentation on how to set this up would be fantastic

@vietj

pmlopes commented 6 years ago

@willisjtc indeed we need to work on the documentation. We have some non JVM implementations in the following repository: https://github.com/vert-x3/vertx-eventbus-bridge-clients

The Python implementation is here:

https://github.com/vert-x3/vertx-eventbus-bridge-clients/tree/master/python

And probably needs some love in regards to documentation and tests, please have a look and let us know if this is what you're looking for and help us making it even better ;)

willisjtc commented 6 years ago

@pmlopes, if i am not mistaken those examples still require you to setup a jvm as a bridge. What i was hoping for was an example of how to connect another service in a non-jvm langugage to the event bus. Is that even possible?

pmlopes commented 6 years ago

@willisjtc vertx is a JVM based project, so non JVM runtimes can only interact if they bridge to a JVM vertx node. We don’t provide generic event bus implementations if that’s what you’re looking for.