Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

dotnet high performance remote interface and delegate invoke(RPC) communication components,support millions RPS remote interface method invokes

License

Notifications You must be signed in to change notification settings

beetlex-io/XRPC

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

25 Commits

Repository files navigation

XRPC

dotnet high performance remote interface invoke(RPC) communication components,implemente millions RPS remote interface method calls.

samples

https://github.com/IKende/BeetleX-Samples

Install Packet

Install-Package BeetleX.XRPC -Version x

Server

 class Program
 {
 static void Main(string[] args)
 {
 var builder = new HostBuilder()
 .ConfigureServices((hostContext, services) =>
 {
 services.UseXRPC(s =>
 {
 s.ServerOptions.LogLevel = BeetleX.EventArgs.LogType.Trace;
 s.ServerOptions.DefaultListen.Port = 9090;
 s.RPCOptions.ParameterFormater = new JsonPacket();//default messagepack
 },
 typeof(Program).Assembly);
 });
 builder.Build().Run();
 }
 }

Server controller

 public interface IHello
 {
 Task<string> Hello(string name);
 }
 [Service(typeof(IHello))]
 public class HelloImpl : IHello
 {
 public Task<string> Hello(string name)
 {
 return $"hello {name} {DateTime.Now}".ToTask();
 }
 }

Client

 client = new XRPCClient("localhost", 9090);
 client.Options.ParameterFormater = new JsonPacket();//default messagepack
 hello = client.Create<IHello>();
 while(true)
 {
 Console.Write("Enter you name:");
 var name = Console.ReadLine();
 var task = hello.Hello(name);
 task.Wait();
 Console.WriteLine(task.Result);
 }

About

dotnet high performance remote interface and delegate invoke(RPC) communication components,support millions RPS remote interface method invokes

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

AltStyle によって変換されたページ (->オリジナル) /