Update index.md

Repair broken links
This commit is contained in:
deadmouse 2023-02-21 17:12:09 +01:00 committed by GitHub
parent 36e4ad4245
commit 375ef7043e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,7 +21,7 @@ Let's discuss all points
Every time a subscriber gets called, a new instance of the codeunit is being loaded in memory, which takes memory and processing power. The smaller the codeunit, the less memory, and the faster it is. Every time a subscriber gets called, a new instance of the codeunit is being loaded in memory, which takes memory and processing power. The smaller the codeunit, the less memory, and the faster it is.
Therefore, it's suggested to split the subscribers by functionality and avoid putting business logic in the actual codeunit. Tip: put all business logic in an "[Method Codeunit](https://alguidelines.dev/bcpatterns/generic-method-pattern/)". Therefore, it's suggested to split the subscribers by functionality and avoid putting business logic in the actual codeunit. Tip: put all business logic in an "[Method Codeunit](https://alguidelines.dev/docs/patterns/generic-method-pattern/)".
Examples: Examples:
@ -198,4 +198,4 @@ Avoid subscribers to these events.
## References ## References
The [Generic Method Pattern](https://alguidelines.dev/bcpatterns/generic-method-pattern/) The [Generic Method Pattern](https://alguidelines.dev/docs/patterns/generic-method-pattern/)