Skip to content

bicroz/vertx-eventbus-bridge-clients

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vertx-eventbus-bridge-clients

This project is created to have vertx bridge-client for various languages. Currently we have only for .NET standard. To contribute on other languages, Pull Requests are always welcome. Below is a sample program using TcpBridgeClient.

            TcpBridgeClient tcpBridgeClient = new TcpBridgeClient( "127.0.0.1", 7000, option);
            tcpBridgeClient.Register("client.consumer1",                              //registered address
                  (message) =>  Console.WriteLine("message received from server"));    //callback
            
            tcpBridgeClient.Send("server.echo",          //server address
                  "message to server");                   //message

You can link the library as a nuget package at https://www.nuget.org/packages/Vertx.TcpBridge/

Releases

No releases published

Packages

No packages published

Languages