1、IpcServiceFramework简介
IpcServiceFramework 是一个为 .NET Core 平台设计的轻量级进程间通信框架。它提供了一种类似于 WCF 的方式来创建服务,并支持命名管道和 TCP 两种传输协议。通过 TCP,我们可以实现不同进程、不同机器之间的服务调用。。还支持通过SSL进行安全通信。
支持在服务契约中使用原始或复杂类型。
支持服务器端的多线程,具有可配置的线程数(仅限命名管道端点)。
ASP.NET Core依赖注入框架友好。
2、IpcServiceFramework使用示例代码
1)创建 service contract
public interface IComputingService
{
float AddFloat(float x, float y);
}
2)实现service
class ComputingService : IComputingService
{
public float AddFloat(float x, float y)
{
return x + y;
}
}
3)在控制台应用程序中托管service
class Program
{
static void Main(string[] args)
{
// configure DI
IServiceCollection services = ConfigureServices(new ServiceCollection());
// build and run service host
new IpcServiceHostBuilder(services.BuildServiceProvider())
.AddNamedPipeEndpoint<IComputingService>(name: "endpoint1", pipeName: "pipeName")
.AddTcpEndpoint<IComputingService>(name: "endpoint2", ipEndpoint: IPAddress.Loopback, port: 45684)
.Build()
.Run();
}
private static IServiceCollection ConfigureServices(IServiceCollection services)
{
return services
.AddIpc()
.AddNamedPipe(options =>
{
options.ThreadCount = 2;
})
.AddService<IComputingService, ComputingService>();
}
}
4)从客户端进程调用service
IpcServiceClient<IComputingService> client = new IpcServiceClientBuilder<IComputingService>()
.UseNamedPipe("pipeName") // or .UseTcp(IPAddress.Loopback, 45684) to invoke using TCP
.Build();
float result = await client.InvokeAsync(x => x.AddFloat(1.23f, 4.56f));
IpcServiceFramework:https://github.com/jacqueskang/IpcServiceFramework