Info
| Version: | 2.2.0-pre | 
| Author(s): | Jayamine Alupotha | 
| Last Update: | Saturday, August 6, 2016 | 
| .NET Fiddle: | Create the first Fiddle | 
| Project Url: | https://github.com/jaymine/TCP-eventbus-client-C-Sharp | 
| NuGet Url: | https://www.nuget.org/packages/vertx-eventbus | 
Install
Install-Package vertx-eventbus
                        dotnet add package vertx-eventbus
                        paket add vertx-eventbus
                        
                                vertx-eventbus Download (Unzip the "nupkg" after downloading)
                            
                        Dependencies
- Microsoft.NETCore.App(>= 1.0.0)
 - xunit(>= 2.2.023300)
 - dotnet-test-xunit(>= 2.2.021029)
 
                
The protocol is quite simple:
4bytes int32 message length (big endian encoding)
json string
built-in keys
1) type: (String, required) One of "send", "publish", "register", "unregister".
2) headers: (Object, optional) Headers with JSON format.
3) body: (Object, optional) Message content in JSON format.
4) address: (String, required) Destination address
5) replyAddress: (String, optional) Address for replying to.