Info
| Version: | 1.2.0-beta | 
| Author(s): | Jayamine Alupotha | 
| Last Update: | Friday, July 22, 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/VertxEventbus | 
Install
Install-Package VertxEventbus
                        dotnet add package VertxEventbus
                        paket add VertxEventbus
                        
                                VertxEventbus 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.