From 71572f9683eb8ee77d7a0004895c47c3512a28a8 Mon Sep 17 00:00:00 2001 From: diy0r Date: Thu, 25 Jul 2024 13:43:52 +0500 Subject: [PATCH] doc: link to serdes --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 122b5d7..592714d 100644 --- a/README.md +++ b/README.md @@ -197,7 +197,7 @@ If you have defined `globalBroker` in `forRoot`, you will have access to the RPC ### Method `sendToQueue` -Unlike the standard [sendToQueue](https://amqp-node.github.io/amqplib/channel_api.html#channel_sendToQueue) method from amqlib, this method differs in that messages go through [Serialization]($SerDes) before being sent. +Unlike the standard [sendToQueue](https://amqp-node.github.io/amqplib/channel_api.html#channel_sendToQueue) method from amqlib, this method differs in that messages go through [Serialization](#serializationdeserialization) before being sent. ```ts sendToQueue(queue: string, obj:ISend) { @@ -380,7 +380,7 @@ export class EventMiddleware implements IRmqMiddleware { If nothing is returned, the execution of the middleware chain will continue. -EventMiddleware implements the `use` method, which takes two parameters: `message`, which is the standard `ConsumeMessage` from amqplib, and `content`, which is your message that has passed through [deserialization](#). +EventMiddleware implements the `use` method, which takes two parameters: `message`, which is the standard `ConsumeMessage` from amqplib, and `content`, which is your message that has passed through [deserialization](#serializationdeserialization-in-specific-module). #### Module Level @@ -463,7 +463,7 @@ export class EventInterceptor implements IRmqInterceptor { } ``` -EventInterceptor implements the `intercept` method, which takes two parameters: `message`, which is the standard `ConsumeMessage` from amqplib, and `content`, which is your message that has passed through [deserialization](#). The `intercept` method returns an asynchronous function that will be invoked after processing. +EventInterceptor implements the `intercept` method, which takes two parameters: `message`, which is the standard `ConsumeMessage` from amqplib, and `content`, which is your message that has passed through [deserialization](#serializationdeserialization-in-specific-module). The `intercept` method returns an asynchronous function that will be invoked after processing. #### Module Level