Skip to content

Commit

Permalink
FIX docs Connectors.md
Browse files Browse the repository at this point in the history
  • Loading branch information
luca-domenichini authored Jan 11, 2024
1 parent 40f72f9 commit 52572c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Docs/Connectors.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ These are the connectors provided by SmartIOT.Connector out of the box:

Different connectors can choose the way they serialize messages over the wire. Sometimes the protocol used by the connector is able to delimit the boundary of messages by itself and sometimes it is not.<br>
When the protocol is able to split each message in a sequence of bytes, then we can use the [single message serializer](../Core/SmartIOT.Connector.Messages/Serializers/ISingleMessageSerializer.cs).<br>
When the protocol is not able to split each message, some extra bytes are needed to be sent on the network to mark the message type and/or length. In this case, the [stream message serializer](../Core/SmartIOT.Connector.Messages/Serializers/IStreamMessageSerializer.cs) should be used instead, and extra logic must be put and the connector to decode the protocol and interpret the incoming stream.
When the protocol is not able to split each message, some extra bytes are needed to be sent on the network to mark the message type and/or length. In this case, the [stream message serializer](../Core/SmartIOT.Connector.Messages/Serializers/IStreamMessageSerializer.cs) should be used instead, and extra logic must be put on the connector to decode the protocol and interpret the incoming stream.

### [Single message serializer](../Core/SmartIOT.Connector.Messages/Serializers/ISingleMessageSerializer.cs)

Expand Down

0 comments on commit 52572c2

Please sign in to comment.