From 8aa974d577d3bab545db25d7a84ff1f37751dd4d Mon Sep 17 00:00:00 2001 From: Savorboard Date: Mon, 14 Feb 2022 10:40:17 +0800 Subject: [PATCH] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 05a77b9..f57aa10 100644 --- a/README.md +++ b/README.md @@ -180,7 +180,6 @@ Then register your class that implements `ISubscriberService` in Startup.cs ```c# public void ConfigureServices(IServiceCollection services) { - //Note: The injection of services needs before of `services.AddCap()` services.AddTransient(); services.AddCap(x=> @@ -204,7 +203,6 @@ public class CustomersSubscriberService : ICapSubscribe } ``` - #### Subscribe Group The concept of a subscription group is similar to that of a consumer group in Kafka. it is the same as the broadcast mode in the message queue, which is used to process the same message between multiple different microservice instances.