Skip to content

Commit 64344f1

Browse files
author
Jacques Kang
committed
update README
1 parent 2f7bbe8 commit 64344f1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
A .NET Core lightweight inter-process communication framework allowing invoking a service via named pipeline (in a similar way as WCF, which is currently unavailable for .NET Core).
66

77
Support using primitive or complexe types in service contract.
8+
Support multi-threading on server side with configurable number of threads.
89

910
[ASP.NET Core Dependency Injection framework](https://docs.microsoft.com/en-us/aspnet/core/fundamentals/dependency-injection) friendly.
1011

@@ -109,7 +110,10 @@ Support using primitive or complexe types in service contract.
109110
.AddLogging();
110111

111112
services
112-
.AddIpc()
113+
.AddIpc(options =>
114+
{
115+
options.ThreadCount = 4;
116+
})
113117
.AddService<IComputingService, ComputingService>()
114118
;
115119

0 commit comments

Comments
 (0)