Skip to content

Commit 152a972

Browse files
committed
Attempt to remove emojis from tutorial25 README.
1 parent e921a63 commit 152a972

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tutorials/tutorial25/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ the compilation may report an error due to being out of heap space.
2222
To mitigate this problem / annoyance the **v6.1** of the **commsdsl2comms** code generator added extra `switch`
2323
based message factories in the [<protocol_namespace>/factory](include/tutorial25/factory) folder.
2424

25-
- [<protocol_namespace>::factory::AllMessagesDynMemMsgFactory](include/tutorial25/factory/AllMessagesDynMemMsgFactory.h) class -
25+
- [&lt;protocol_namespace&gt;::<zero-width space>factory::AllMessagesDynMemMsgFactory](include/tutorial25/factory/AllMessagesDynMemMsgFactory.h) class -
2626
a factory for all the messages of the protocol.
27-
- [&lt;protocol_namespace&gt;::factory::ClientInputMessagesDynMemMsgFactory](include/tutorial25/factory/ClientInputMessagesDynMemMsgFactory.h) class -
27+
- [&lt;protocol_namespace&gt;::<zero-width space>factory::ClientInputMessagesDynMemMsgFactory](include/tutorial25/factory/ClientInputMessagesDynMemMsgFactory.h) class -
2828
a factory for the client input messages of the protocol.
29-
- [&lt;protocol_namespace&gt;::factory::ServerInputMessagesDynMemMsgFactory](include/tutorial25/factory/ServerInputMessagesDynMemMsgFactory.h) class -
29+
- [&lt;protocol_namespace&gt;::<zero-width space>factory::ServerInputMessagesDynMemMsgFactory](include/tutorial25/factory/ServerInputMessagesDynMemMsgFactory.h) class -
3030
a factory for the server input messages of the protocol.
3131

3232
The **DynMem** part of the name implies dynamic memory allocation.
@@ -43,11 +43,11 @@ The **v6.1** of the **commsdsl2comms** code generator also generates extra proto
4343
option to the [comms::protocol::MsgIdLayer](https://commschamp.github.io/comms_doc/classcomms_1_1protocol_1_1MsgIdLayer.html) class:
4444

4545
- [&lt;protocol_namespace&gt;::optoins::AllMessagesDynMemMsgFactoryDefaultOptions](include/tutorial25/options/AllMessagesDynMemMsgFactoryDefaultOptions.h) - the options forcing usage
46-
of the [&lt;protocol_namespace&gt;::factory::AllMessagesDynMemMsgFactory](include/tutorial25/factory/AllMessagesDynMemMsgFactory.h).
46+
of the [&lt;protocol_namespace&gt;::<zero-width space>factory::AllMessagesDynMemMsgFactory](include/tutorial25/factory/AllMessagesDynMemMsgFactory.h).
4747
- [&lt;protocol_namespace&gt;::optoins::ClientInputMessagesDynMemMsgFactoryDefaultOptions](include/tutorial25/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h) -
48-
the options forcing usage of the [&lt;protocol_namespace&gt;::factory::ClientInputMessagesDynMemMsgFactory](include/tutorial25/factory/ClientInputMessagesDynMemMsgFactory.h).
48+
the options forcing usage of the [&lt;protocol_namespace&gt;::<zero-width space>factory::ClientInputMessagesDynMemMsgFactory](include/tutorial25/factory/ClientInputMessagesDynMemMsgFactory.h).
4949
- [&lt;protocol_namespace&gt;::optoins::ServerInputMessagesDynMemMsgFactoryDefaultOptions](include/tutorial25/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h) -
50-
the options forcing usage of the [&lt;protocol_namespace&gt;::factory::ServerInputMessagesDynMemMsgFactory](include/tutorial25/factory/ServerInputMessagesDynMemMsgFactory.h).
50+
the options forcing usage of the [&lt;protocol_namespace&gt;::<zero-width space>factory::ServerInputMessagesDynMemMsgFactory](include/tutorial25/factory/ServerInputMessagesDynMemMsgFactory.h).
5151

5252
Let's take a look how the protocol options above can be used to force usage of the more efficient message factories.
5353

@@ -125,7 +125,7 @@ void ClientSession::sendMsg2()
125125
## Summary
126126

127127
- As the number of messages in the protocol grow, the burden on the compilation time and memory consumption can grow exponentially.
128-
- When number of the messages exceeds 20-30 messages, it is recommended to use more optimized generated message factories.
128+
- When number of the messages exceeds 30-50 messages, it is recommended to use more optimized generated message factories.
129129
- The message factory classes reside in the **&lt;protocol_namespace&gt;/factory** folder.
130130
- The **&lt;protocol_namespace&gt;/options** folder will also contain new relevant option classes which can be used to
131131
force usage of the new factories.

0 commit comments

Comments
 (0)