From ade9db239cbe4d7a3a2084e4d534d33e6f6ff3be Mon Sep 17 00:00:00 2001 From: gurustron Date: Fri, 7 Oct 2022 12:13:45 +0300 Subject: [PATCH 1/2] Small typos fixes and improvements --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c484477..49d622a 100644 --- a/README.md +++ b/README.md @@ -250,7 +250,7 @@ If an error occurs, it will be propagated to the caller and subsequent subscribe ISingleton***, IScoped*** --- -I(Async)Publisher(Subscriber)'s lifetime is belonging `MessagePipeOptions.InstanceLifetime`. However if declare with `ISingletonPublisher/ISingletonSubscriber`, `ISingletonAsyncPublisher/ISingletonAsyncSubscriber` then used singleton lifetime. Also `IScopedPublisher/IScopedSubscriber`, `IScopedAsyncPublisher/IScopedAsyncSubscriber` uses scoped lifetime. +I(Async)Publisher(Subscriber)'s lifetime is belonging to `MessagePipeOptions.InstanceLifetime`. However if declare with `ISingletonPublisher`/`ISingletonSubscriber`, `ISingletonAsyncPublisher`/`ISingletonAsyncSubscriber` then used singleton lifetime. Also `IScopedPublisher`/`IScopedSubscriber`, `IScopedAsyncPublisher`/`IScopedAsyncSubscriber` uses scoped lifetime. Buffered --- @@ -1084,7 +1084,7 @@ Configure MessageBroker(publisher/subscriber manager)'s lifetime of DI cotainer. ### RequestHandlerLifetime -Configure IRequestHandler/IAsyncRequestHandler's lifetime of DI cotainer. You can choose `Singleton` or `Scoped` or `Transient`. Default is `Scoped`. +Configure IRequestHandler/IAsyncRequestHandler's lifetime of DI container. You can choose `Singleton` or `Scoped` or `Transient`. Default is `Scoped`. ### EnableAutoRegistration/SetAutoRegistrationSearchAssemblies/SetAutoRegistrationSearchTypes From 8a400de8d2f9e773e37b56e9ea225e1e2103ef76 Mon Sep 17 00:00:00 2001 From: gurustron Date: Fri, 7 Oct 2022 12:17:33 +0300 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 49d622a..defc33e 100644 --- a/README.md +++ b/README.md @@ -250,7 +250,7 @@ If an error occurs, it will be propagated to the caller and subsequent subscribe ISingleton***, IScoped*** --- -I(Async)Publisher(Subscriber)'s lifetime is belonging to `MessagePipeOptions.InstanceLifetime`. However if declare with `ISingletonPublisher`/`ISingletonSubscriber`, `ISingletonAsyncPublisher`/`ISingletonAsyncSubscriber` then used singleton lifetime. Also `IScopedPublisher`/`IScopedSubscriber`, `IScopedAsyncPublisher`/`IScopedAsyncSubscriber` uses scoped lifetime. +I(Async)Publisher(Subscriber)'s lifetime belongs to `MessagePipeOptions.InstanceLifetime`. However if declare with `ISingletonPublisher`/`ISingletonSubscriber`, `ISingletonAsyncPublisher`/`ISingletonAsyncSubscriber` then used singleton lifetime. Also `IScopedPublisher`/`IScopedSubscriber`, `IScopedAsyncPublisher`/`IScopedAsyncSubscriber` uses scoped lifetime. Buffered ---