LibRPC
1.0.0
LibRPC ist eine sehr leichte Echtzeit- und Hochleistungsbibliothek für .Net Framework und .Net Portable. Es bietet ein Stream-basiertes RPC-Framework, das es sehr leicht und erweiterbar macht. Es funktioniert grundsätzlich auf Server/Client- und Anfrage/Antwort-Architektur. Checkout-Beispiele für die grundlegende Verwendung
LibRPC verwendet Stream-basierte Kommunikation, sodass Sie es in TCP, Pipes und jedem anderen Stream-basierten Protokoll verwenden können. Es folgt ein einfaches Server-Client-Beispiel, bei dem wir einfach den Server aufrufen, um zwei Zahlen hinzuzufügen. Imports LibRPC.Basic
:
Private Sub Server()
Dim tcp As New TcpListener(IPAddress.Loopback, 11221 )
tcp.Start()
While True
Dim sock = tcp.AcceptTcpClient()
Dim host = New RPCHost(sock.GetStream())
host.On( 6644 , New Func( Of Integer , Integer , Integer )( AddressOf OnAdd))
End While
End Sub
Private Function OnAdd(x As Integer , y As Integer ) As Integer
Return x + y
End Function
Private Sub Client()
Dim tcp As New TcpClient( "localhost" , 11221 )
Dim host As New RPCHost(tcp.GetStream())
Console.WriteLine(host.Call( Of Integer )( 6644 , 5 , 9 )) '14
End Sub
Es folgt C# using LibRPC.Basic;
:
private void Server ( )
{
TcpListener tcp = new TcpListener ( IPAddress . Loopback , 11221 ) ;
tcp . Start ( ) ;
while ( true ) {
dynamic sock = tcp . AcceptTcpClient ( ) ;
dynamic host = new RPCHost ( sock . GetStream ( ) ) ;
host . On ( 6644 , new Func < int , int , int > ( OnAdd ) ) ;
}
}
private int OnAdd ( int x , int y )
{
return x + y ;
}
private void Client ( )
{
TcpClient tcp = new TcpClient ( "localhost" , 11221 ) ;
RPCHost host = new RPCHost ( tcp . GetStream ( ) ) ;
Console . WriteLine ( host . Call < int > ( 6644 , 5 , 9 ) ) ; //14
}